[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/conduit/controller/ -> PhabricatorConduitListController.php (source)

   1  <?php
   2  
   3  final class PhabricatorConduitListController
   4    extends PhabricatorConduitController {
   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 PhabricatorConduitSearchEngine())
  20        ->setNavigation($this->buildSideNavView());
  21      return $this->delegateToController($controller);
  22    }
  23  
  24  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1