Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/editor/PhabricatorAuthMessageEditor.php
- This file was added.
| <?php | |||||
| final class PhabricatorAuthMessageEditor | |||||
| extends PhabricatorApplicationTransactionEditor { | |||||
| public function getEditorApplicationClass() { | |||||
| return 'PhabricatorAuthApplication'; | |||||
| } | |||||
| public function getEditorObjectsDescription() { | |||||
| return pht('Auth Messages'); | |||||
| } | |||||
| public function getCreateObjectTitle($author, $object) { | |||||
| return pht('%s created this message.', $author); | |||||
| } | |||||
| public function getCreateObjectTitleForFeed($author, $object) { | |||||
| return pht('%s created %s.', $author, $object); | |||||
| } | |||||
| } | |||||