mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 11:52:40 +01:00
edfcd7bd2d
Summary: Converts various callsites from render_tag variants to tag variants. Test Plan: See inlines. Reviewers: vrana, btrahan Reviewed By: vrana CC: aran Maniphest Tasks: T2432 Differential Revision: https://secure.phabricator.com/D4689
98 lines
2.1 KiB
PHP
98 lines
2.1 KiB
PHP
<?php
|
|
|
|
final class DifferentialBlameRevisionFieldSpecification
|
|
extends DifferentialFieldSpecification {
|
|
|
|
private $value;
|
|
|
|
public function getStorageKey() {
|
|
return 'phabricator:blame-revision';
|
|
}
|
|
|
|
public function getValueForStorage() {
|
|
return $this->value;
|
|
}
|
|
|
|
public function setValueFromStorage($value) {
|
|
$this->value = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function shouldAppearOnEdit() {
|
|
return true;
|
|
}
|
|
|
|
public function setValueFromRequest(AphrontRequest $request) {
|
|
$this->value = $request->getStr($this->getStorageKey());
|
|
return $this;
|
|
}
|
|
|
|
public function renderEditControl() {
|
|
return id(new AphrontFormTextControl())
|
|
->setLabel('Blame Revision')
|
|
->setCaption('Revision which broke the stuff which this change fixes.')
|
|
->setName($this->getStorageKey())
|
|
->setValue($this->value);
|
|
}
|
|
|
|
public function shouldAppearOnRevisionView() {
|
|
return true;
|
|
}
|
|
|
|
public function renderLabelForRevisionView() {
|
|
return 'Blame Revision:';
|
|
}
|
|
|
|
public function renderValueForRevisionView() {
|
|
if (!$this->value) {
|
|
return null;
|
|
}
|
|
$engine = PhabricatorMarkupEngine::newDifferentialMarkupEngine();
|
|
return phutil_safe_html($engine->markupText($this->value));
|
|
}
|
|
|
|
public function shouldAppearOnConduitView() {
|
|
return true;
|
|
}
|
|
|
|
public function getValueForConduit() {
|
|
return $this->value;
|
|
}
|
|
|
|
public function shouldAppearOnCommitMessage() {
|
|
return true;
|
|
}
|
|
|
|
public function getCommitMessageKey() {
|
|
return 'blameRevision';
|
|
}
|
|
|
|
public function setValueFromParsedCommitMessage($value) {
|
|
$this->value = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function shouldOverwriteWhenCommitMessageIsEdited() {
|
|
return true;
|
|
}
|
|
|
|
public function renderLabelForCommitMessage() {
|
|
return 'Blame Revision';
|
|
}
|
|
|
|
public function renderValueForCommitMessage($is_edit) {
|
|
return $this->value;
|
|
}
|
|
|
|
public function getSupportedCommitMessageLabels() {
|
|
return array(
|
|
'Blame Revision',
|
|
'Blame Rev',
|
|
);
|
|
}
|
|
|
|
public function parseValueFromCommitMessage($value) {
|
|
return $value;
|
|
}
|
|
|
|
}
|