Changeset View
Changeset View
Standalone View
Standalone View
src/applications/almanac/storage/AlmanacService.php
| Show First 20 Lines • Show All 154 Lines • ▼ Show 20 Lines | /* -( AlmanacPropertyInterface )------------------------------------------- */ | ||||
| public function getAlmanacPropertyFieldSpecifications() { | public function getAlmanacPropertyFieldSpecifications() { | ||||
| return $this->getServiceImplementation()->getFieldSpecifications(); | return $this->getServiceImplementation()->getFieldSpecifications(); | ||||
| } | } | ||||
| public function newAlmanacPropertyEditEngine() { | public function newAlmanacPropertyEditEngine() { | ||||
| return new AlmanacServicePropertyEditEngine(); | return new AlmanacServicePropertyEditEngine(); | ||||
| } | } | ||||
| public function getAlmanacPropertySetTransactionType() { | |||||
| return AlmanacServiceSetPropertyTransaction::TRANSACTIONTYPE; | |||||
| } | |||||
| public function getAlmanacPropertyDeleteTransactionType() { | |||||
| return AlmanacServiceDeletePropertyTransaction::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 123 Lines • Show Last 20 Lines | |||||