Differential D8361 Diff 19878 src/applications/differential/customfield/DifferentialRevertPlanField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialRevertPlanField.php
| Show All 9 Lines | final class DifferentialRevertPlanField | ||||
| public function getFieldName() { | public function getFieldName() { | ||||
| return pht('Revert Plan'); | return pht('Revert Plan'); | ||||
| } | } | ||||
| public function getFieldDescription() { | public function getFieldDescription() { | ||||
| return pht('Instructions for reverting/undoing this change.'); | return pht('Instructions for reverting/undoing this change.'); | ||||
| } | } | ||||
| public function shouldDisableByDefault() { | |||||
| return true; | |||||
| } | |||||
| public function shouldAppearInPropertyView() { | public function shouldAppearInPropertyView() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function renderPropertyViewLabel() { | public function renderPropertyViewLabel() { | ||||
| return $this->getFieldName(); | return $this->getFieldName(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 100 Lines • Show Last 20 Lines | |||||