Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/flag/controller/PhabricatorFlagListController.php
12256 views
1
<?php
2
3
final class PhabricatorFlagListController extends PhabricatorFlagController {
4
5
public function shouldAllowPublic() {
6
return true;
7
}
8
9
public function handleRequest(AphrontRequest $request) {
10
$viewer = $request->getViewer();
11
$querykey = $request->getURIData('queryKey');
12
13
$controller = id(new PhabricatorApplicationSearchController())
14
->setQueryKey($querykey)
15
->setSearchEngine(new PhabricatorFlagSearchEngine())
16
->setNavigation($this->buildSideNavView());
17
18
return $this->delegateToController($controller);
19
}
20
21
}
22
23