Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/query/PhabricatorAuthInviteSearchEngine.php
| <?php | <?php | ||||
| final class PhabricatorAuthInviteSearchEngine | final class PhabricatorAuthInviteSearchEngine | ||||
| extends PhabricatorApplicationSearchEngine { | extends PhabricatorApplicationSearchEngine { | ||||
| public function getResultTypeDescription() { | public function getResultTypeDescription() { | ||||
| return pht('Email Invites'); | return pht('Auth Email Invites'); | ||||
| } | } | ||||
| public function getApplicationClassName() { | public function getApplicationClassName() { | ||||
| return 'PhabricatorAuthApplication'; | return 'PhabricatorAuthApplication'; | ||||
| } | } | ||||
| public function canUseInPanelContext() { | |||||
| return false; | |||||
| } | |||||
| public function buildSavedQueryFromRequest(AphrontRequest $request) { | public function buildSavedQueryFromRequest(AphrontRequest $request) { | ||||
| $saved = new PhabricatorSavedQuery(); | $saved = new PhabricatorSavedQuery(); | ||||
| return $saved; | return $saved; | ||||
| } | } | ||||
| public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) { | public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) { | ||||
| $query = id(new PhabricatorAuthInviteQuery()); | $query = id(new PhabricatorAuthInviteQuery()); | ||||
| ▲ Show 20 Lines • Show All 89 Lines • Show Last 20 Lines | |||||