[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class PhabricatorCountdownListController 4 extends PhabricatorCountdownController { 5 6 private $queryKey; 7 8 public function shouldAllowPublic() { 9 return true; 10 } 11 12 public function willProcessRequest(array $data) { 13 $this->queryKey = idx($data, 'queryKey'); 14 } 15 16 public function processRequest() { 17 $controller = id(new PhabricatorApplicationSearchController()) 18 ->setQueryKey($this->queryKey) 19 ->setSearchEngine(new PhabricatorCountdownSearchEngine()) 20 ->setNavigation($this->buildSideNavView()); 21 22 return $this->delegateToController($controller); 23 } 24 25 26 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |