Page MenuHomec4science

PhabricatorPhameConfigOptions.php
No OneTemporary

File Metadata

Created
Mon, Dec 23, 06:44

PhabricatorPhameConfigOptions.php

<?php
final class PhabricatorPhameConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht('Phame');
}
public function getDescription() {
return pht('Configure Phame blogs.');
}
public function getFontIcon() {
return 'fa-star';
}
public function getOptions() {
return array(
$this->newOption(
'phame.skins',
'list<string>',
array(
'externals/skins/',
))
->setLocked(true)
->setDescription(
pht('List of directories where Phame will look for skins.')),
);
}
}

Event Timeline