mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 19:52:44 +01:00
27 lines
580 B
PHP
27 lines
580 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorPhrictionConfigOptions
|
||
|
extends PhabricatorApplicationConfigOptions {
|
||
|
|
||
|
public function getName() {
|
||
|
return pht("Phriction");
|
||
|
}
|
||
|
|
||
|
public function getDescription() {
|
||
|
return pht("Options related to Phriction (wiki).");
|
||
|
}
|
||
|
|
||
|
public function getOptions() {
|
||
|
return array(
|
||
|
$this->newOption('phriction.enabled', 'bool', true)
|
||
|
->setBoolOptions(
|
||
|
array(
|
||
|
pht("Enable Phriction"),
|
||
|
pht("Disable Phriction"),
|
||
|
))
|
||
|
->setDescription(pht("Enable or disable Phriction."))
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|