Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Controller_Search extends Controller_Hybrid
- {
- public function action_index() {
- $this->template->title = 'Results for » '.Input::get('q');
- $this->template->content = View::forge('search/index.twig');
- }
- public function action_advanced()
- {
- $this->template->title = 'Search » Advanced Search';
- $this->template->content = View::forge('search/index.twig', array(
- 'advancedForm' => true
- ));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement