mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
28 lines
531 B
PHP
28 lines
531 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorPhameConfigOptions
|
||
|
extends PhabricatorApplicationConfigOptions {
|
||
|
|
||
|
public function getName() {
|
||
|
return pht("Phame");
|
||
|
}
|
||
|
|
||
|
public function getDescription() {
|
||
|
return pht("Configure Phame blogs.");
|
||
|
}
|
||
|
|
||
|
public function getOptions() {
|
||
|
return array(
|
||
|
$this->newOption(
|
||
|
'phame.skins',
|
||
|
'list<string>',
|
||
|
array(
|
||
|
'exterals/skins/',
|
||
|
))
|
||
|
->setDescription(
|
||
|
pht('List of directories where Phame will look for skins.')),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|