Differential D17341 Diff 41828 src/applications/calendar/query/PhabricatorCalendarImportSearchEngine.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/calendar/query/PhabricatorCalendarImportSearchEngine.php
| <?php | <?php | ||||
| final class PhabricatorCalendarImportSearchEngine | final class PhabricatorCalendarImportSearchEngine | ||||
| extends PhabricatorApplicationSearchEngine { | extends PhabricatorApplicationSearchEngine { | ||||
| public function getResultTypeDescription() { | public function getResultTypeDescription() { | ||||
| return pht('Calendar Imports'); | return pht('Calendar Imports'); | ||||
| } | } | ||||
| public function getApplicationClassName() { | public function getApplicationClassName() { | ||||
| return 'PhabricatorCalendarApplication'; | return 'PhabricatorCalendarApplication'; | ||||
| } | } | ||||
| public function canUseInPanelContext() { | |||||
| return false; | |||||
| } | |||||
| public function newQuery() { | public function newQuery() { | ||||
| return new PhabricatorCalendarImportQuery(); | return new PhabricatorCalendarImportQuery(); | ||||
| } | } | ||||
| protected function buildCustomSearchFields() { | protected function buildCustomSearchFields() { | ||||
| return array(); | return array(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 60 Lines • Show Last 20 Lines | |||||