Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/field/PhabricatorCustomField.php
| Show First 20 Lines • Show All 918 Lines • ▼ Show 20 Lines | public function getApplicationTransactionChangeDetails( | ||||
| if ($this->proxy) { | if ($this->proxy) { | ||||
| return $this->proxy->getApplicationTransactionChangeDetails( | return $this->proxy->getApplicationTransactionChangeDetails( | ||||
| $xaction, | $xaction, | ||||
| $viewer); | $viewer); | ||||
| } | } | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getApplicationTransactionRequiredHandlePHIDs( | |||||
| PhabricatorApplicationTransaction $xaction) { | |||||
| if ($this->proxy) { | |||||
| return $this->proxy->getApplicationTransactionRequiredHandlePHIDs( | |||||
| $xaction); | |||||
| } | |||||
| return array(); | |||||
| } | |||||
| /* -( Edit View )---------------------------------------------------------- */ | /* -( Edit View )---------------------------------------------------------- */ | ||||
| /** | /** | ||||
| * @task edit | * @task edit | ||||
| */ | */ | ||||
| public function shouldAppearInEditView() { | public function shouldAppearInEditView() { | ||||
| Show All 13 Lines | public function readValueFromRequest(AphrontRequest $request) { | ||||
| } | } | ||||
| throw new PhabricatorCustomFieldImplementationIncompleteException($this); | throw new PhabricatorCustomFieldImplementationIncompleteException($this); | ||||
| } | } | ||||
| /** | /** | ||||
| * @task edit | * @task edit | ||||
| */ | */ | ||||
| public function renderEditControl() { | public function getRequiredHandlePHIDsForEdit() { | ||||
| if ($this->proxy) { | |||||
| return $this->proxy->getRequiredHandlePHIDsForEdit(); | |||||
| } | |||||
| return array(); | |||||
| } | |||||
| /** | |||||
| * @task edit | |||||
| */ | |||||
| public function renderEditControl(array $handles) { | |||||
| if ($this->proxy) { | if ($this->proxy) { | ||||
| return $this->proxy->renderEditControl(); | return $this->proxy->renderEditControl($handles); | ||||
| } | } | ||||
| throw new PhabricatorCustomFieldImplementationIncompleteException($this); | throw new PhabricatorCustomFieldImplementationIncompleteException($this); | ||||
| } | } | ||||
| /* -( Property View )------------------------------------------------------ */ | /* -( Property View )------------------------------------------------------ */ | ||||
| ▲ Show 20 Lines • Show All 70 Lines • Show Last 20 Lines | |||||