Differential D17207 Diff 41374 src/applications/differential/customfield/DifferentialRevertPlanField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialRevertPlanField.php
| Show First 20 Lines • Show All 124 Lines • ▼ Show 20 Lines | return $xaction->renderTextCorpusChangeDetails( | ||||
| $xaction->getNewValue()); | $xaction->getNewValue()); | ||||
| } | } | ||||
| public function getApplicationTransactionRemarkupBlocks( | public function getApplicationTransactionRemarkupBlocks( | ||||
| PhabricatorApplicationTransaction $xaction) { | PhabricatorApplicationTransaction $xaction) { | ||||
| return array($xaction->getNewValue()); | return array($xaction->getNewValue()); | ||||
| } | } | ||||
| public function shouldAppearInCommitMessage() { | |||||
| return true; | |||||
| } | |||||
| public function renderCommitMessageValue(array $handles) { | |||||
| return $this->getValue(); | |||||
| } | |||||
| public function shouldAppearInConduitDictionary() { | public function shouldAppearInConduitDictionary() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function shouldAppearInConduitTransactions() { | public function shouldAppearInConduitTransactions() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| protected function newConduitEditParameterType() { | protected function newConduitEditParameterType() { | ||||
| return new ConduitStringParameterType(); | return new ConduitStringParameterType(); | ||||
| } | } | ||||
| } | } | ||||