@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix method visibility for `PhabricatorApplicationSearchEngine` methods

Summary: Ref T6822.

Test Plan: Visual inspection. These methods are only called from within the `PhabricatorApplicationSearchEngine` class.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11242

+91 -91
+1 -1
src/applications/almanac/query/AlmanacDeviceSearchEngine.php
··· 31 31 return '/almanac/device/'.$path; 32 32 } 33 33 34 - public function getBuiltinQueryNames() { 34 + protected function getBuiltinQueryNames() { 35 35 $names = array( 36 36 'all' => pht('All Devices'), 37 37 );
+1 -1
src/applications/almanac/query/AlmanacNetworkSearchEngine.php
··· 31 31 return '/almanac/network/'.$path; 32 32 } 33 33 34 - public function getBuiltinQueryNames() { 34 + protected function getBuiltinQueryNames() { 35 35 $names = array( 36 36 'all' => pht('All Networks'), 37 37 );
+1 -1
src/applications/almanac/query/AlmanacServiceSearchEngine.php
··· 31 31 return '/almanac/service/'.$path; 32 32 } 33 33 34 - public function getBuiltinQueryNames() { 34 + protected function getBuiltinQueryNames() { 35 35 $names = array( 36 36 'all' => pht('All Services'), 37 37 );
+1 -1
src/applications/audit/query/PhabricatorCommitSearchEngine.php
··· 122 122 return '/audit/'.$path; 123 123 } 124 124 125 - public function getBuiltinQueryNames() { 125 + protected function getBuiltinQueryNames() { 126 126 $names = array(); 127 127 128 128 if ($this->requireViewer()->isLoggedIn()) {
+2 -2
src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php
··· 7 7 return pht('Calendar Events'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorCalendarApplication'; 12 12 } 13 13 ··· 143 143 return '/calendar/event/'.$path; 144 144 } 145 145 146 - public function getBuiltinQueryNames() { 146 + protected function getBuiltinQueryNames() { 147 147 $names = array( 148 148 'upcoming' => pht('Upcoming Events'), 149 149 'all' => pht('All Events'),
+2 -2
src/applications/conduit/query/PhabricatorConduitSearchEngine.php
··· 7 7 return pht('Conduit Methods'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorConduitApplication'; 12 12 } 13 13 ··· 112 112 return '/conduit/'.$path; 113 113 } 114 114 115 - public function getBuiltinQueryNames() { 115 + protected function getBuiltinQueryNames() { 116 116 return array( 117 117 'modern' => pht('Modern Methods'), 118 118 'all' => pht('All Methods'),
+2 -2
src/applications/countdown/query/PhabricatorCountdownSearchEngine.php
··· 7 7 return pht('Countdowns'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorCountdownApplication'; 12 12 } 13 13 ··· 68 68 return '/countdown/'.$path; 69 69 } 70 70 71 - public function getBuiltinQueryNames() { 71 + protected function getBuiltinQueryNames() { 72 72 $names = array( 73 73 'upcoming' => pht('Upcoming'), 74 74 'all' => pht('All'),
+2 -2
src/applications/dashboard/query/PhabricatorDashboardPanelSearchEngine.php
··· 7 7 return pht('Dashboard Panels'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorDashboardApplication'; 12 12 } 13 13 ··· 59 59 return '/dashboard/panel/'.$path; 60 60 } 61 61 62 - public function getBuiltinQueryNames() { 62 + protected function getBuiltinQueryNames() { 63 63 return array( 64 64 'active' => pht('Active Panels'), 65 65 'all' => pht('All Panels'),
+2 -2
src/applications/dashboard/query/PhabricatorDashboardSearchEngine.php
··· 7 7 return pht('Dashboards'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorDashboardApplication'; 12 12 } 13 13 ··· 29 29 return '/dashboard/'.$path; 30 30 } 31 31 32 - public function getBuiltinQueryNames() { 32 + protected function getBuiltinQueryNames() { 33 33 return array( 34 34 'all' => pht('All Dashboards'), 35 35 );
+2 -2
src/applications/differential/query/DifferentialRevisionSearchEngine.php
··· 7 7 return pht('Differential Revisions'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorDifferentialApplication'; 12 12 } 13 13 ··· 200 200 return '/differential/'.$path; 201 201 } 202 202 203 - public function getBuiltinQueryNames() { 203 + protected function getBuiltinQueryNames() { 204 204 $names = array(); 205 205 206 206 if ($this->requireViewer()->isLoggedIn()) {
+2 -2
src/applications/diviner/query/DivinerAtomSearchEngine.php
··· 6 6 return pht('Documentation Atoms'); 7 7 } 8 8 9 - public function getApplicationClassName() { 9 + protected function getApplicationClassName() { 10 10 return 'PhabricatorDivinerApplication'; 11 11 } 12 12 ··· 73 73 return '/diviner/'.$path; 74 74 } 75 75 76 - public function getBuiltinQueryNames() { 76 + protected function getBuiltinQueryNames() { 77 77 return array( 78 78 'all' => pht('All'), 79 79 );
+3 -3
src/applications/drydock/query/DrydockBlueprintSearchEngine.php
··· 7 7 return pht('Drydock Blueprints'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorDrydockApplication'; 12 12 } 13 13 ··· 27 27 return '/drydock/blueprint/'.$path; 28 28 } 29 29 30 - public function getBuiltinQueryNames() { 30 + protected function getBuiltinQueryNames() { 31 31 return array( 32 32 'all' => pht('All Blueprints'), 33 33 ); ··· 45 45 return parent::buildSavedQueryFromBuiltin($query_key); 46 46 } 47 47 48 - public function renderResultList( 48 + protected function renderResultList( 49 49 array $blueprints, 50 50 PhabricatorSavedQuery $query, 51 51 array $handles) {
+2 -2
src/applications/drydock/query/DrydockLeaseSearchEngine.php
··· 7 7 return pht('Drydock Leases'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorDrydockApplication'; 12 12 } 13 13 ··· 57 57 return '/drydock/lease/'.$path; 58 58 } 59 59 60 - public function getBuiltinQueryNames() { 60 + protected function getBuiltinQueryNames() { 61 61 return array( 62 62 'active' => pht('Active Leases'), 63 63 'all' => pht('All Leases'),
+2 -2
src/applications/drydock/query/DrydockLogSearchEngine.php
··· 6 6 return pht('Drydock Logs'); 7 7 } 8 8 9 - public function getApplicationClassName() { 9 + protected function getApplicationClassName() { 10 10 return 'PhabricatorDrydockApplication'; 11 11 } 12 12 ··· 26 26 return '/drydock/log/'.$path; 27 27 } 28 28 29 - public function getBuiltinQueryNames() { 29 + protected function getBuiltinQueryNames() { 30 30 return array( 31 31 'all' => pht('All Logs'), 32 32 );
+2 -2
src/applications/drydock/query/DrydockResourceSearchEngine.php
··· 7 7 return pht('Drydock Resources'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorDrydockApplication'; 12 12 } 13 13 ··· 56 56 return '/drydock/resource/'.$path; 57 57 } 58 58 59 - public function getBuiltinQueryNames() { 59 + protected function getBuiltinQueryNames() { 60 60 return array( 61 61 'active' => pht('Active Resources'), 62 62 'all' => pht('All Resources'),
+1 -1
src/applications/feed/query/PhabricatorFeedSearchEngine.php
··· 101 101 return '/feed/'.$path; 102 102 } 103 103 104 - public function getBuiltinQueryNames() { 104 + protected function getBuiltinQueryNames() { 105 105 $names = array( 106 106 'all' => pht('All Stories'), 107 107 );
+2 -2
src/applications/files/query/PhabricatorFileSearchEngine.php
··· 7 7 return pht('Files'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorFilesApplication'; 12 12 } 13 13 ··· 86 86 return '/file/'.$path; 87 87 } 88 88 89 - public function getBuiltinQueryNames() { 89 + protected function getBuiltinQueryNames() { 90 90 $names = array(); 91 91 92 92 if ($this->requireViewer()->isLoggedIn()) {
+2 -2
src/applications/flag/query/PhabricatorFlagSearchEngine.php
··· 7 7 return pht('Flags'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorFlagsApplication'; 12 12 } 13 13 ··· 71 71 return '/flag/'.$path; 72 72 } 73 73 74 - public function getBuiltinQueryNames() { 74 + protected function getBuiltinQueryNames() { 75 75 $names = array( 76 76 'all' => pht('Flagged'), 77 77 );
+2 -2
src/applications/fund/query/FundBackerSearchEngine.php
··· 18 18 return pht('Fund Backers'); 19 19 } 20 20 21 - public function getApplicationClassName() { 21 + protected function getApplicationClassName() { 22 22 return 'PhabricatorFundApplication'; 23 23 } 24 24 ··· 86 86 } 87 87 } 88 88 89 - public function getBuiltinQueryNames() { 89 + protected function getBuiltinQueryNames() { 90 90 $names = array(); 91 91 $names['all'] = pht('All Backers'); 92 92
+2 -2
src/applications/fund/query/FundInitiativeSearchEngine.php
··· 7 7 return pht('Fund Initiatives'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorFundApplication'; 12 12 } 13 13 ··· 86 86 return '/fund/'.$path; 87 87 } 88 88 89 - public function getBuiltinQueryNames() { 89 + protected function getBuiltinQueryNames() { 90 90 $names = array(); 91 91 92 92 $names['open'] = pht('Open Initiatives');
+2 -2
src/applications/harbormaster/query/HarbormasterBuildPlanSearchEngine.php
··· 7 7 return pht('Harbormaster Build Plans'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorHarbormasterApplication'; 12 12 } 13 13 ··· 58 58 return '/harbormaster/plan/'.$path; 59 59 } 60 60 61 - public function getBuiltinQueryNames() { 61 + protected function getBuiltinQueryNames() { 62 62 return array( 63 63 'active' => pht('Active Plans'), 64 64 'all' => pht('All Plans'),
+2 -2
src/applications/harbormaster/query/HarbormasterBuildableSearchEngine.php
··· 7 7 return pht('Harbormaster Buildables'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorHarbormasterApplication'; 12 12 } 13 13 ··· 159 159 return '/harbormaster/'.$path; 160 160 } 161 161 162 - public function getBuiltinQueryNames() { 162 + protected function getBuiltinQueryNames() { 163 163 return array( 164 164 'all' => pht('All Buildables'), 165 165 );
+2 -2
src/applications/herald/query/HeraldRuleSearchEngine.php
··· 6 6 return pht('Herald Rules'); 7 7 } 8 8 9 - public function getApplicationClassName() { 9 + protected function getApplicationClassName() { 10 10 return 'PhabricatorHeraldApplication'; 11 11 } 12 12 ··· 103 103 return '/herald/'.$path; 104 104 } 105 105 106 - public function getBuiltinQueryNames() { 106 + protected function getBuiltinQueryNames() { 107 107 $names = array(); 108 108 109 109 if ($this->requireViewer()->isLoggedIn()) {
+2 -2
src/applications/herald/query/HeraldTranscriptSearchEngine.php
··· 7 7 return pht('Herald Transcripts'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorHeraldApplication'; 12 12 } 13 13 ··· 74 74 return '/herald/transcript/'.$path; 75 75 } 76 76 77 - public function getBuiltinQueryNames() { 77 + protected function getBuiltinQueryNames() { 78 78 return array( 79 79 'all' => pht('All'), 80 80 );
+2 -2
src/applications/legalpad/query/LegalpadDocumentSearchEngine.php
··· 7 7 return pht('Legalpad Documents'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorLegalpadApplication'; 12 12 } 13 13 ··· 120 120 return '/legalpad/'.$path; 121 121 } 122 122 123 - public function getBuiltinQueryNames() { 123 + protected function getBuiltinQueryNames() { 124 124 $names = array(); 125 125 126 126 if ($this->requireViewer()->isLoggedIn()) {
+2 -2
src/applications/legalpad/query/LegalpadDocumentSignatureSearchEngine.php
··· 9 9 return pht('Legalpad Signatures'); 10 10 } 11 11 12 - public function getApplicationClassName() { 12 + protected function getApplicationClassName() { 13 13 return 'PhabricatorLegalpadApplication'; 14 14 } 15 15 ··· 123 123 } 124 124 } 125 125 126 - public function getBuiltinQueryNames() { 126 + protected function getBuiltinQueryNames() { 127 127 $names = array( 128 128 'all' => pht('All Signatures'), 129 129 );
+2 -2
src/applications/macro/query/PhabricatorMacroSearchEngine.php
··· 7 7 return pht('Macros'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorMacroApplication'; 12 12 } 13 13 ··· 128 128 return '/macro/'.$path; 129 129 } 130 130 131 - public function getBuiltinQueryNames() { 131 + protected function getBuiltinQueryNames() { 132 132 $names = array( 133 133 'active' => pht('Active'), 134 134 'all' => pht('All'),
+2 -2
src/applications/mailinglists/query/PhabricatorMailingListSearchEngine.php
··· 7 7 return pht('Mailing Lists'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorMailingListsApplication'; 12 12 } 13 13 ··· 38 38 return '/mailinglists/'.$path; 39 39 } 40 40 41 - public function getBuiltinQueryNames() { 41 + protected function getBuiltinQueryNames() { 42 42 return array( 43 43 'all' => pht('All Lists'), 44 44 );
+2 -2
src/applications/maniphest/query/ManiphestTaskSearchEngine.php
··· 34 34 return pht('Tasks'); 35 35 } 36 36 37 - public function getApplicationClassName() { 37 + protected function getApplicationClassName() { 38 38 return 'PhabricatorManiphestApplication'; 39 39 } 40 40 ··· 437 437 return '/maniphest/'.$path; 438 438 } 439 439 440 - public function getBuiltinQueryNames() { 440 + protected function getBuiltinQueryNames() { 441 441 $names = array(); 442 442 443 443 if ($this->requireViewer()->isLoggedIn()) {
+2 -2
src/applications/meta/query/PhabricatorAppSearchEngine.php
··· 7 7 return pht('Applications'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorApplicationsApplication'; 12 12 } 13 13 ··· 136 136 return '/applications/'.$path; 137 137 } 138 138 139 - public function getBuiltinQueryNames() { 139 + protected function getBuiltinQueryNames() { 140 140 return array( 141 141 'launcher' => pht('Launcher'), 142 142 'all' => pht('All Applications'),
+2 -2
src/applications/notification/query/PhabricatorNotificationSearchEngine.php
··· 7 7 return pht('Notifications'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorNotificationsApplication'; 12 12 } 13 13 ··· 52 52 return '/notification/'.$path; 53 53 } 54 54 55 - public function getBuiltinQueryNames() { 55 + protected function getBuiltinQueryNames() { 56 56 57 57 $names = array( 58 58 'all' => pht('All Notifications'),
+2 -2
src/applications/oauthserver/query/PhabricatorOAuthServerClientSearchEngine.php
··· 7 7 return pht('OAuth Clients'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorOAuthServerApplication'; 12 12 } 13 13 ··· 55 55 return '/oauthserver/'.$path; 56 56 } 57 57 58 - public function getBuiltinQueryNames() { 58 + protected function getBuiltinQueryNames() { 59 59 $names = array(); 60 60 61 61 if ($this->requireViewer()->isLoggedIn()) {
+2 -2
src/applications/passphrase/query/PassphraseCredentialSearchEngine.php
··· 7 7 return pht('Passphrase Credentials'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorPassphraseApplication'; 12 12 } 13 13 ··· 67 67 return '/passphrase/'.$path; 68 68 } 69 69 70 - public function getBuiltinQueryNames() { 70 + protected function getBuiltinQueryNames() { 71 71 return array( 72 72 'active' => pht('Active Credentials'), 73 73 'all' => pht('All Credentials'),
+1 -1
src/applications/paste/query/PhabricatorPasteSearchEngine.php
··· 98 98 return '/paste/'.$path; 99 99 } 100 100 101 - public function getBuiltinQueryNames() { 101 + protected function getBuiltinQueryNames() { 102 102 $names = array( 103 103 'all' => pht('All Pastes'), 104 104 );
+2 -2
src/applications/people/query/PhabricatorPeopleLogSearchEngine.php
··· 7 7 return pht('Account Activity'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorPeopleApplication'; 12 12 } 13 13 ··· 152 152 return '/people/logs/'.$path; 153 153 } 154 154 155 - public function getBuiltinQueryNames() { 155 + protected function getBuiltinQueryNames() { 156 156 $names = array( 157 157 'all' => pht('All'), 158 158 );
+2 -2
src/applications/people/query/PhabricatorPeopleSearchEngine.php
··· 7 7 return pht('Users'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorPeopleApplication'; 12 12 } 13 13 ··· 163 163 return '/people/'.$path; 164 164 } 165 165 166 - public function getBuiltinQueryNames() { 166 + protected function getBuiltinQueryNames() { 167 167 $names = array( 168 168 'all' => pht('All'), 169 169 );
+2 -2
src/applications/pholio/query/PholioMockSearchEngine.php
··· 6 6 return pht('Pholio Mocks'); 7 7 } 8 8 9 - public function getApplicationClassName() { 9 + protected function getApplicationClassName() { 10 10 return 'PhabricatorPholioApplication'; 11 11 } 12 12 ··· 71 71 return '/pholio/'.$path; 72 72 } 73 73 74 - public function getBuiltinQueryNames() { 74 + protected function getBuiltinQueryNames() { 75 75 $names = array( 76 76 'open' => pht('Open Mocks'), 77 77 'all' => pht('All Mocks'),
+1 -1
src/applications/phortune/query/PhortuneCartSearchEngine.php
··· 102 102 } 103 103 } 104 104 105 - public function getBuiltinQueryNames() { 105 + protected function getBuiltinQueryNames() { 106 106 $names = array( 107 107 'all' => pht('All Orders'), 108 108 );
+1 -1
src/applications/phortune/query/PhortuneChargeSearchEngine.php
··· 69 69 } 70 70 } 71 71 72 - public function getBuiltinQueryNames() { 72 + protected function getBuiltinQueryNames() { 73 73 $names = array( 74 74 'all' => pht('All Charges'), 75 75 );
+1 -1
src/applications/phortune/query/PhortuneMerchantSearchEngine.php
··· 27 27 return '/phortune/merchant/'.$path; 28 28 } 29 29 30 - public function getBuiltinQueryNames() { 30 + protected function getBuiltinQueryNames() { 31 31 $names = array( 32 32 'all' => pht('All Merchants'), 33 33 );
+2 -2
src/applications/phrequent/query/PhrequentSearchEngine.php
··· 6 6 return pht('Phrequent Time'); 7 7 } 8 8 9 - public function getApplicationClassName() { 9 + protected function getApplicationClassName() { 10 10 return 'PhabricatorPhrequentApplication'; 11 11 } 12 12 ··· 91 91 return '/phrequent/'.$path; 92 92 } 93 93 94 - public function getBuiltinQueryNames() { 94 + protected function getBuiltinQueryNames() { 95 95 return array( 96 96 'tracking' => pht('Currently Tracking'), 97 97 'all' => pht('All Tracked'),
+1 -1
src/applications/phriction/query/PhrictionSearchEngine.php
··· 59 59 return '/phriction/'.$path; 60 60 } 61 61 62 - public function getBuiltinQueryNames() { 62 + protected function getBuiltinQueryNames() { 63 63 $names = array( 64 64 'active' => pht('Active'), 65 65 'updated' => pht('Updated'),
+2 -2
src/applications/ponder/query/PonderQuestionSearchEngine.php
··· 7 7 return pht('Ponder Questions'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorPonderApplication'; 12 12 } 13 13 ··· 95 95 return '/ponder/'.$path; 96 96 } 97 97 98 - public function getBuiltinQueryNames() { 98 + protected function getBuiltinQueryNames() { 99 99 $names = array( 100 100 'open' => pht('Open Questions'), 101 101 'all' => pht('All Questions'),
+2 -2
src/applications/project/query/PhabricatorProjectSearchEngine.php
··· 7 7 return pht('Projects'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorProjectApplication'; 12 12 } 13 13 ··· 145 145 return '/project/'.$path; 146 146 } 147 147 148 - public function getBuiltinQueryNames() { 148 + protected function getBuiltinQueryNames() { 149 149 $names = array(); 150 150 151 151 if ($this->requireViewer()->isLoggedIn()) {
+1 -1
src/applications/releeph/query/ReleephBranchSearchEngine.php
··· 56 56 return '/releeph/product/'.$this->getProduct()->getID().'/'.$path; 57 57 } 58 58 59 - public function getBuiltinQueryNames() { 59 + protected function getBuiltinQueryNames() { 60 60 $names = array( 61 61 'open' => pht('Open'), 62 62 'all' => pht('All'),
+2 -2
src/applications/releeph/query/ReleephProductSearchEngine.php
··· 7 7 return pht('Releeph Products'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorReleephApplication'; 12 12 } 13 13 ··· 49 49 return '/releeph/project/'.$path; 50 50 } 51 51 52 - public function getBuiltinQueryNames() { 52 + protected function getBuiltinQueryNames() { 53 53 return array( 54 54 'active' => pht('Active'), 55 55 'all' => pht('All'),
+1 -1
src/applications/releeph/query/ReleephRequestSearchEngine.php
··· 94 94 return $this->baseURI.$path; 95 95 } 96 96 97 - public function getBuiltinQueryNames() { 97 + protected function getBuiltinQueryNames() { 98 98 $names = array( 99 99 'open' => pht('Open Requests'), 100 100 'all' => pht('All Requests'),
+2 -2
src/applications/repository/query/PhabricatorRepositoryPushLogSearchEngine.php
··· 7 7 return pht('Push Logs'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorDiffusionApplication'; 12 12 } 13 13 ··· 90 90 return '/diffusion/pushlog/'.$path; 91 91 } 92 92 93 - public function getBuiltinQueryNames() { 93 + protected function getBuiltinQueryNames() { 94 94 return array( 95 95 'all' => pht('All Push Logs'), 96 96 );
+2 -2
src/applications/repository/query/PhabricatorRepositorySearchEngine.php
··· 7 7 return pht('Repositories'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorDiffusionApplication'; 12 12 } 13 13 ··· 149 149 return '/diffusion/'.$path; 150 150 } 151 151 152 - public function getBuiltinQueryNames() { 152 + protected function getBuiltinQueryNames() { 153 153 $names = array( 154 154 'active' => pht('Active Repositories'), 155 155 'all' => pht('All Repositories'),
+2 -2
src/applications/search/query/PhabricatorSearchApplicationSearchEngine.php
··· 7 7 return pht('Fulltext Results'); 8 8 } 9 9 10 - public function getApplicationClassName() { 10 + protected function getApplicationClassName() { 11 11 return 'PhabricatorSearchApplication'; 12 12 } 13 13 ··· 169 169 return '/search/'.$path; 170 170 } 171 171 172 - public function getBuiltinQueryNames() { 172 + protected function getBuiltinQueryNames() { 173 173 return array( 174 174 'all' => pht('All Documents'), 175 175 'open' => pht('Open Documents'),
+2 -2
src/applications/slowvote/query/PhabricatorSlowvoteSearchEngine.php
··· 85 85 return '/vote/'.$path; 86 86 } 87 87 88 - public function getBuiltinQueryNames() { 88 + protected function getBuiltinQueryNames() { 89 89 $names = array( 90 90 'open' => pht('Open Polls'), 91 91 'all' => pht('All Polls'), ··· 119 119 return parent::buildSavedQueryFromBuiltin($query_key); 120 120 } 121 121 122 - public function getRequiredHandlePHIDsForResultList( 122 + protected function getRequiredHandlePHIDsForResultList( 123 123 array $polls, 124 124 PhabricatorSavedQuery $query) { 125 125 return mpull($polls, 'getAuthorPHID');