Page MenuHomec4science

PhabricatorPhrictionConfigOptions.php
No OneTemporary

File Metadata

Created
Tue, Jun 10, 07:58

PhabricatorPhrictionConfigOptions.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.")),
$this->newOption(
'metamta.phriction.subject-prefix', 'string', '[Phriction]')
->setDescription(pht("Subject prefix for Phriction email.")),
);
}
}

Event Timeline