Differential D17070 Diff 41086 src/infrastructure/customfield/editor/PhabricatorCustomFieldEditField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/editor/PhabricatorCustomFieldEditField.php
| Show All 31 Lines | public function setCustomFieldConduitParameterType( | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getCustomFieldConduitParameterType() { | public function getCustomFieldConduitParameterType() { | ||||
| return $this->conduitParameterType; | return $this->conduitParameterType; | ||||
| } | } | ||||
| protected function buildControl() { | protected function buildControl() { | ||||
| if ($this->getIsConduitOnly()) { | |||||
| return null; | |||||
| } | |||||
| $field = $this->getCustomField(); | $field = $this->getCustomField(); | ||||
| $clone = clone $field; | $clone = clone $field; | ||||
| $value = $this->getValue(); | $value = $this->getValue(); | ||||
| $clone->setValueFromApplicationTransactions($value); | $clone->setValueFromApplicationTransactions($value); | ||||
| return $clone->renderEditControl(array()); | return $clone->renderEditControl(array()); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 86 Lines • Show Last 20 Lines | |||||