示例#1
0
 /**
  * Redirects to another module and action
  * @param string $route The "module/action" combo in one string
  * @param array $query Query string parameters, will be in the url itself
  * @param array $options Options for the router
  */
 protected function redirect($route, array $query = array(), array $options = array())
 {
     $this->router->redirect(new Route($route, $query, $options));
 }