2013-05-24 21:37:53 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2015-10-15 19:20:19 +02:00
|
|
|
* DEPRECATED. Use @{class:PHUIRemarkupView}.
|
2013-05-24 21:37:53 +02:00
|
|
|
*/
|
2015-06-15 10:02:26 +02:00
|
|
|
final class PhabricatorMarkupOneOff
|
|
|
|
extends Phobject
|
|
|
|
implements PhabricatorMarkupInterface {
|
2013-05-24 21:37:53 +02:00
|
|
|
|
|
|
|
private $content;
|
2013-08-05 19:47:26 +02:00
|
|
|
private $preserveLinebreaks;
|
2014-05-11 03:06:41 +02:00
|
|
|
private $engineRuleset;
|
2015-02-22 14:39:25 +01:00
|
|
|
private $disableCache;
|
2014-05-11 03:06:41 +02:00
|
|
|
|
|
|
|
public function setEngineRuleset($engine_ruleset) {
|
|
|
|
$this->engineRuleset = $engine_ruleset;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getEngineRuleset() {
|
|
|
|
return $this->engineRuleset;
|
|
|
|
}
|
2013-08-05 19:47:26 +02:00
|
|
|
|
|
|
|
public function setPreserveLinebreaks($preserve_linebreaks) {
|
|
|
|
$this->preserveLinebreaks = $preserve_linebreaks;
|
|
|
|
return $this;
|
|
|
|
}
|
2013-05-24 21:37:53 +02:00
|
|
|
|
|
|
|
public function setContent($content) {
|
|
|
|
$this->content = $content;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getContent() {
|
|
|
|
return $this->content;
|
|
|
|
}
|
|
|
|
|
2015-02-22 14:39:25 +01:00
|
|
|
public function setDisableCache($disable_cache) {
|
|
|
|
$this->disableCache = $disable_cache;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDisableCache() {
|
|
|
|
return $this->disableCache;
|
|
|
|
}
|
|
|
|
|
2013-05-24 21:37:53 +02:00
|
|
|
public function getMarkupFieldKey($field) {
|
|
|
|
return PhabricatorHash::digestForIndex($this->getContent()).':oneoff';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function newMarkupEngine($field) {
|
2014-05-11 03:06:41 +02:00
|
|
|
if ($this->engineRuleset) {
|
|
|
|
return PhabricatorMarkupEngine::getEngine($this->engineRuleset);
|
|
|
|
} else if ($this->preserveLinebreaks) {
|
2013-11-14 02:08:24 +01:00
|
|
|
return PhabricatorMarkupEngine::getEngine();
|
|
|
|
} else {
|
|
|
|
return PhabricatorMarkupEngine::getEngine('nolinebreaks');
|
|
|
|
}
|
2013-05-24 21:37:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getMarkupText($field) {
|
|
|
|
return $this->getContent();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function didMarkupText(
|
|
|
|
$field,
|
|
|
|
$output,
|
|
|
|
PhutilMarkupEngine $engine) {
|
|
|
|
|
|
|
|
require_celerity_resource('phabricator-remarkup-css');
|
|
|
|
return phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-remarkup',
|
|
|
|
),
|
|
|
|
$output);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function shouldUseMarkupCache($field) {
|
2015-02-22 14:39:25 +01:00
|
|
|
if ($this->getDisableCache()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-24 21:37:53 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|