Changeset View
Changeset View
Standalone View
Standalone View
src/applications/almanac/storage/AlmanacDevice.php
| Show First 20 Lines • Show All 137 Lines • ▼ Show 20 Lines | /* -( AlmanacPropertyInterface )------------------------------------------- */ | ||||
| public function getAlmanacPropertyFieldSpecifications() { | public function getAlmanacPropertyFieldSpecifications() { | ||||
| return array(); | return array(); | ||||
| } | } | ||||
| public function newAlmanacPropertyEditEngine() { | public function newAlmanacPropertyEditEngine() { | ||||
| return new AlmanacDevicePropertyEditEngine(); | return new AlmanacDevicePropertyEditEngine(); | ||||
| } | } | ||||
| public function getAlmanacPropertySetTransactionType() { | |||||
| return AlmanacDeviceSetPropertyTransaction::TRANSACTIONTYPE; | |||||
| } | |||||
| public function getAlmanacPropertyDeleteTransactionType() { | |||||
| return AlmanacDeviceDeletePropertyTransaction::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 136 Lines • Show Last 20 Lines | |||||