mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-01 17:38:24 +01:00
17 lines
309 B
PHP
17 lines
309 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorEmailContentSource
|
||
|
extends PhabricatorContentSource {
|
||
|
|
||
|
const SOURCECONST = 'email';
|
||
|
|
||
|
public function getSourceName() {
|
||
|
return pht('Email');
|
||
|
}
|
||
|
|
||
|
public function getSourceDescription() {
|
||
|
return pht('Content sent by electronic mail, also known as e-mail.');
|
||
|
}
|
||
|
|
||
|
}
|