Changeset View
Changeset View
Standalone View
Standalone View
src/applications/almanac/storage/AlmanacBinding.php
| Show First 20 Lines • Show All 128 Lines • ▼ Show 20 Lines | /* -( AlmanacPropertyInterface )------------------------------------------- */ | ||||
| public function getAlmanacPropertyFieldSpecifications() { | public function getAlmanacPropertyFieldSpecifications() { | ||||
| return array(); | return array(); | ||||
| } | } | ||||
| public function newAlmanacPropertyEditEngine() { | public function newAlmanacPropertyEditEngine() { | ||||
| return new AlmanacBindingPropertyEditEngine(); | return new AlmanacBindingPropertyEditEngine(); | ||||
| } | } | ||||
| public function getAlmanacPropertySetTransactionType() { | |||||
| return AlmanacBindingSetPropertyTransaction::TRANSACTIONTYPE; | |||||
| } | |||||
| public function getAlmanacPropertyDeleteTransactionType() { | |||||
| return AlmanacBindingDeletePropertyTransaction::TRANSACTIONTYPE; | |||||
| } | |||||
| /* -( PhabricatorPolicyInterface )----------------------------------------- */ | /* -( PhabricatorPolicyInterface )----------------------------------------- */ | ||||
| public function getCapabilities() { | public function getCapabilities() { | ||||
| return array( | return array( | ||||
| PhabricatorPolicyCapability::CAN_VIEW, | PhabricatorPolicyCapability::CAN_VIEW, | ||||
| PhabricatorPolicyCapability::CAN_EDIT, | PhabricatorPolicyCapability::CAN_EDIT, | ||||
| ▲ Show 20 Lines • Show All 76 Lines • Show Last 20 Lines | |||||