Differential D19810 Diff 47322 src/applications/transactions/commentaction/PhabricatorEditEngineCommentAction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/transactions/commentaction/PhabricatorEditEngineCommentAction.php
| <?php | <?php | ||||
| abstract class PhabricatorEditEngineCommentAction extends Phobject { | abstract class PhabricatorEditEngineCommentAction extends Phobject { | ||||
| private $key; | private $key; | ||||
| private $label; | private $label; | ||||
| private $value; | private $value; | ||||
| private $initialValue; | private $initialValue; | ||||
| private $order; | private $order; | ||||
| private $groupKey; | private $groupKey; | ||||
| private $conflictKey; | private $conflictKey; | ||||
| private $submitButtonText; | |||||
| abstract public function getPHUIXControlType(); | abstract public function getPHUIXControlType(); | ||||
| abstract public function getPHUIXControlSpecification(); | abstract public function getPHUIXControlSpecification(); | ||||
| public function setKey($key) { | public function setKey($key) { | ||||
| $this->key = $key; | $this->key = $key; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 56 Lines • ▼ Show 20 Lines | public function setInitialValue($initial_value) { | ||||
| $this->initialValue = $initial_value; | $this->initialValue = $initial_value; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getInitialValue() { | public function getInitialValue() { | ||||
| return $this->initialValue; | return $this->initialValue; | ||||
| } | } | ||||
| public function setSubmitButtonText($text) { | |||||
| $this->submitButtonText = $text; | |||||
| return $this; | |||||
| } | |||||
| public function getSubmitButtonText() { | |||||
| return $this->submitButtonText; | |||||
| } | |||||
| } | } | ||||