mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
b04a6a1999
Summary: Implement Diffusion MetaMTA options. Also make the fake '{{config.option}}' rule work, and use Remarkup to render summaries as well as descriptions. Test Plan: Looked at Diffusion rules, edited some, looked at setup issues, verified '{{config.option}}' linked to the right option. Reviewers: codeblock, btrahan Reviewed By: codeblock CC: aran Maniphest Tasks: T2255 Differential Revision: https://secure.phabricator.com/D4466
182 lines
3.5 KiB
PHP
182 lines
3.5 KiB
PHP
<?php
|
|
|
|
final class PhabricatorConfigOption
|
|
extends Phobject
|
|
implements PhabricatorMarkupInterface{
|
|
|
|
private $key;
|
|
private $default;
|
|
private $summary;
|
|
private $description;
|
|
private $type;
|
|
private $boolOptions;
|
|
private $group;
|
|
private $examples;
|
|
private $locked;
|
|
private $hidden;
|
|
private $masked;
|
|
private $baseClass;
|
|
|
|
public function setBaseClass($base_class) {
|
|
$this->baseClass = $base_class;
|
|
return $this;
|
|
}
|
|
|
|
public function getBaseClass() {
|
|
return $this->baseClass;
|
|
}
|
|
|
|
public function setMasked($masked) {
|
|
$this->masked = $masked;
|
|
return $this;
|
|
}
|
|
|
|
public function getMasked() {
|
|
if ($this->getHidden()) {
|
|
return true;
|
|
}
|
|
return $this->masked;
|
|
}
|
|
|
|
public function setHidden($hidden) {
|
|
$this->hidden = $hidden;
|
|
return $this;
|
|
}
|
|
|
|
public function getHidden() {
|
|
return $this->hidden;
|
|
}
|
|
|
|
public function setLocked($locked) {
|
|
$this->locked = $locked;
|
|
return $this;
|
|
}
|
|
|
|
public function getLocked() {
|
|
if ($this->getHidden()) {
|
|
return true;
|
|
}
|
|
return $this->locked;
|
|
}
|
|
|
|
public function addExample($value, $description) {
|
|
$this->examples[] = array($value, $description);
|
|
return $this;
|
|
}
|
|
|
|
public function getExamples() {
|
|
return $this->examples;
|
|
}
|
|
|
|
public function setGroup(PhabricatorApplicationConfigOptions $group) {
|
|
$this->group = $group;
|
|
return $this;
|
|
}
|
|
|
|
public function getGroup() {
|
|
return $this->group;
|
|
}
|
|
|
|
public function setBoolOptions(array $options) {
|
|
$this->boolOptions = $options;
|
|
return $this;
|
|
}
|
|
|
|
public function getBoolOptions() {
|
|
if ($this->boolOptions) {
|
|
return $this->boolOptions;
|
|
}
|
|
return array(
|
|
pht('True'),
|
|
pht('False'),
|
|
);
|
|
}
|
|
|
|
public function setKey($key) {
|
|
$this->key = $key;
|
|
return $this;
|
|
}
|
|
|
|
public function getKey() {
|
|
return $this->key;
|
|
}
|
|
|
|
public function setDefault($default) {
|
|
$this->default = $default;
|
|
return $this;
|
|
}
|
|
|
|
public function getDefault() {
|
|
return $this->default;
|
|
}
|
|
|
|
public function setSummary($summary) {
|
|
$this->summary = $summary;
|
|
return $this;
|
|
}
|
|
|
|
public function getSummary() {
|
|
if (empty($this->summary)) {
|
|
return $this->getDescription();
|
|
}
|
|
return $this->summary;
|
|
}
|
|
|
|
public function setDescription($description) {
|
|
$this->description = $description;
|
|
return $this;
|
|
}
|
|
|
|
public function getDescription() {
|
|
return $this->description;
|
|
}
|
|
|
|
public function setType($type) {
|
|
$this->type = $type;
|
|
return $this;
|
|
}
|
|
|
|
public function getType() {
|
|
return $this->type;
|
|
}
|
|
|
|
/* -( PhabricatorMarkupInterface )----------------------------------------- */
|
|
|
|
public function getMarkupFieldKey($field) {
|
|
return $this->getKey().':'.$field;
|
|
}
|
|
|
|
public function newMarkupEngine($field) {
|
|
return PhabricatorMarkupEngine::newMarkupEngine(array());
|
|
}
|
|
|
|
public function getMarkupText($field) {
|
|
switch ($field) {
|
|
case 'description':
|
|
$text = $this->getDescription();
|
|
break;
|
|
case 'summary':
|
|
$text = $this->getSummary();
|
|
break;
|
|
}
|
|
|
|
// TODO: We should probably implement this as a real Markup rule, but
|
|
// markup rules are a bit of a mess right now and it doesn't hurt us to
|
|
// fake this.
|
|
$text = preg_replace(
|
|
'/{{([^}]+)}}/',
|
|
'[[/config/edit/\\1/ | \\1]]',
|
|
$text);
|
|
|
|
return $text;
|
|
}
|
|
|
|
public function didMarkupText($field, $output, PhutilMarkupEngine $engine) {
|
|
return $output;
|
|
}
|
|
|
|
public function shouldUseMarkupCache($field) {
|
|
return false;
|
|
}
|
|
|
|
}
|