Differential D8286 Diff 19727 src/applications/differential/customfield/DifferentialTestPlanField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialTestPlanField.php
| Show All 38 Lines | return pht( | ||||
| 'You must provide a test plan: describe the actions you performed '. | 'You must provide a test plan: describe the actions you performed '. | ||||
| 'to verify the behvaior of this change.'); | 'to verify the behvaior of this change.'); | ||||
| } | } | ||||
| public function readValueFromRequest(AphrontRequest $request) { | public function readValueFromRequest(AphrontRequest $request) { | ||||
| $this->setValue($request->getStr($this->getFieldKey())); | $this->setValue($request->getStr($this->getFieldKey())); | ||||
| } | } | ||||
| public function renderEditControl() { | public function renderEditControl(array $handles) { | ||||
| return id(new PhabricatorRemarkupControl()) | return id(new PhabricatorRemarkupControl()) | ||||
| ->setName($this->getFieldKey()) | ->setName($this->getFieldKey()) | ||||
| ->setValue($this->getValue()) | ->setValue($this->getValue()) | ||||
| ->setError($this->getFieldError()) | ->setError($this->getFieldError()) | ||||
| ->setLabel($this->getFieldName()); | ->setLabel($this->getFieldName()); | ||||
| } | } | ||||
| public function getApplicationTransactionTitle( | public function getApplicationTransactionTitle( | ||||
| Show All 40 Lines | |||||