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