Differential D17341 Diff 41828 src/applications/metamta/query/PhabricatorMetaMTAMailSearchEngine.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/metamta/query/PhabricatorMetaMTAMailSearchEngine.php
| <?php | <?php | ||||
| final class PhabricatorMetaMTAMailSearchEngine | final class PhabricatorMetaMTAMailSearchEngine | ||||
| extends PhabricatorApplicationSearchEngine { | extends PhabricatorApplicationSearchEngine { | ||||
| public function getResultTypeDescription() { | public function getResultTypeDescription() { | ||||
| return pht('MetaMTA Mails'); | return pht('MetaMTA Mails'); | ||||
| } | } | ||||
| public function getApplicationClassName() { | public function getApplicationClassName() { | ||||
| return 'PhabricatorMetaMTAApplication'; | return 'PhabricatorMetaMTAApplication'; | ||||
| } | } | ||||
| public function canUseInPanelContext() { | |||||
| return false; | |||||
| } | |||||
| public function newQuery() { | public function newQuery() { | ||||
| return new PhabricatorMetaMTAMailQuery(); | return new PhabricatorMetaMTAMailQuery(); | ||||
| } | } | ||||
| protected function shouldShowOrderField() { | protected function shouldShowOrderField() { | ||||
| return false; | return false; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 108 Lines • Show Last 20 Lines | |||||