$formQuery]); \Chibi\UrlHelper::forward($url); return; } $this->context->subTitle = 'browsing posts'; $this->context->searchQuery = $query; throw new Exception('Not implemented'); } /** * @route /post/upload */ public function uploadAction() { $this->context->subTitle = 'upload'; throw new Exception('Not implemented'); } /** * @route /post/{id} */ public function showAction($id) { $this->context->subTitle = 'showing @' . $id; throw new Exception('Not implemented'); } /** * @route /favorites */ public function favoritesAction() { $this->listAction('favmin:1'); } }