mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-12 14:58:33 +01:00
18 lines
332 B
PHP
18 lines
332 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorOldWorldContentSource
|
||
|
extends PhabricatorContentSource {
|
||
|
|
||
|
const SOURCECONST = 'legacy';
|
||
|
|
||
|
public function getSourceName() {
|
||
|
return pht('Old World');
|
||
|
}
|
||
|
|
||
|
public function getSourceDescription() {
|
||
|
return pht(
|
||
|
'Content from the distant past, before content sources existed.');
|
||
|
}
|
||
|
|
||
|
}
|