Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/field/PhabricatorCustomField.php
| Show First 20 Lines • Show All 741 Lines • ▼ Show 20 Lines | public function getApplicationTransactionType() { | ||||
| } | } | ||||
| return PhabricatorTransactions::TYPE_CUSTOMFIELD; | return PhabricatorTransactions::TYPE_CUSTOMFIELD; | ||||
| } | } | ||||
| /** | /** | ||||
| * @task appxaction | * @task appxaction | ||||
| */ | */ | ||||
| public function getApplicationTransactionMetadata() { | |||||
| if ($this->proxy) { | |||||
| return $this->proxy->getApplicationTransactionMetadata(); | |||||
| } | |||||
| return array(); | |||||
| } | |||||
| /** | |||||
| * @task appxaction | |||||
| */ | |||||
| public function getOldValueForApplicationTransactions() { | public function getOldValueForApplicationTransactions() { | ||||
| if ($this->proxy) { | if ($this->proxy) { | ||||
| return $this->proxy->getOldValueForApplicationTransactions(); | return $this->proxy->getOldValueForApplicationTransactions(); | ||||
| } | } | ||||
| return $this->getValueForStorage(); | return $this->getValueForStorage(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 310 Lines • Show Last 20 Lines | |||||