2013-01-16 00:36:49 +01:00
|
|
|
<?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(
|
2013-01-24 21:40:04 +01:00
|
|
|
'externals/skins/',
|
2013-01-16 00:36:49 +01:00
|
|
|
))
|
2014-05-01 19:23:49 +02:00
|
|
|
->setLocked(true)
|
2013-01-16 00:36:49 +01:00
|
|
|
->setDescription(
|
|
|
|
pht('List of directories where Phame will look for skins.')),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|