1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-02 19:52:44 +01:00
phorge-phorge/src/applications/phriction/config/PhabricatorPhrictionConfigOptions.php

27 lines
580 B
PHP
Raw Normal View History

<?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."))
);
}
}