Changeset View
Changeset View
Standalone View
Standalone View
src/applications/transactions/edittype/PhabricatorSimpleEditType.php
| <?php | <?php | ||||
| final class PhabricatorSimpleEditType extends PhabricatorEditType { | final class PhabricatorSimpleEditType extends PhabricatorEditType { | ||||
| private $valueType; | private $valueType; | ||||
| private $valueDescription; | private $valueDescription; | ||||
| private $phuixControlType; | |||||
| private $phuixControlSpecification = array(); | |||||
| public function setValueType($value_type) { | public function setValueType($value_type) { | ||||
| $this->valueType = $value_type; | $this->valueType = $value_type; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getValueType() { | public function getValueType() { | ||||
| return $this->valueType; | return $this->valueType; | ||||
| Show All 13 Lines | public function setValueDescription($value_description) { | ||||
| $this->valueDescription = $value_description; | $this->valueDescription = $value_description; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getValueDescription() { | public function getValueDescription() { | ||||
| return $this->valueDescription; | return $this->valueDescription; | ||||
| } | } | ||||
| public function setPHUIXControlType($type) { | |||||
| $this->phuixControlType = $type; | |||||
| return $this; | |||||
| } | |||||
| public function getPHUIXControlType() { | |||||
| return $this->phuixControlType; | |||||
| } | |||||
| public function setPHUIXControlSpecification(array $spec) { | |||||
| $this->phuixControlSpecification = $spec; | |||||
| return $this; | |||||
| } | |||||
| public function getPHUIXControlSpecification() { | |||||
| return $this->phuixControlSpecification; | |||||
| } | |||||
| } | } | ||||