Changeset View
Changeset View
Standalone View
Standalone View
src/applications/almanac/editor/AlmanacDeviceEditor.php
| <?php | <?php | ||||
| final class AlmanacDeviceEditor | final class AlmanacDeviceEditor | ||||
| extends AlmanacEditor { | extends AlmanacEditor { | ||||
| public function getEditorObjectsDescription() { | public function getEditorObjectsDescription() { | ||||
| return pht('Almanac Device'); | return pht('Almanac Device'); | ||||
| } | } | ||||
| public function getCreateObjectTitle($author, $object) { | |||||
| return pht('%s created this device.', $author); | |||||
| } | |||||
| public function getCreateObjectTitleForFeed($author, $object) { | |||||
| return pht('%s created %s.', $author, $object); | |||||
| } | |||||
| protected function supportsSearch() { | |||||
| return true; | |||||
| } | |||||
| public function getTransactionTypes() { | public function getTransactionTypes() { | ||||
| $types = parent::getTransactionTypes(); | $types = parent::getTransactionTypes(); | ||||
| $types[] = PhabricatorTransactions::TYPE_VIEW_POLICY; | $types[] = PhabricatorTransactions::TYPE_VIEW_POLICY; | ||||
| $types[] = PhabricatorTransactions::TYPE_EDIT_POLICY; | $types[] = PhabricatorTransactions::TYPE_EDIT_POLICY; | ||||
| return $types; | return $types; | ||||
| } | } | ||||
| } | } | ||||