Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/field/PhabricatorCustomField.php
| Show First 20 Lines • Show All 1,317 Lines • ▼ Show 20 Lines | /* -( Conduit )------------------------------------------------------------ */ | ||||
| public function getConduitDictionaryValue() { | public function getConduitDictionaryValue() { | ||||
| if ($this->proxy) { | if ($this->proxy) { | ||||
| return $this->proxy->getConduitDictionaryValue(); | return $this->proxy->getConduitDictionaryValue(); | ||||
| } | } | ||||
| throw new PhabricatorCustomFieldImplementationIncompleteException($this); | throw new PhabricatorCustomFieldImplementationIncompleteException($this); | ||||
| } | } | ||||
| public function shouldAppearInConduitTransactions() { | |||||
| if ($this->proxy) { | |||||
| return $this->proxy->shouldAppearInConduitDictionary(); | |||||
| } | |||||
| return false; | |||||
| } | |||||
| /* -( Herald )------------------------------------------------------------- */ | /* -( Herald )------------------------------------------------------------- */ | ||||
| /** | /** | ||||
| * Return `true` to make this field available in Herald. | * Return `true` to make this field available in Herald. | ||||
| * | * | ||||
| * @return bool True to expose the field in Herald. | * @return bool True to expose the field in Herald. | ||||
| * @task herald | * @task herald | ||||
| ▲ Show 20 Lines • Show All 68 Lines • Show Last 20 Lines | |||||