class Controller_Movie extends Controller { public function action_index() { $data = false; return Response::forge(View::forge('movie/index.tpl', $data)); } public function action_details() { $data = false; return Response::forge(View::forge('movie/details.tpl', $data)); } }
'movie' => 'movie/index', 'movie/(:num)' => 'movie/details',
'movie' => 'movie/index/index', 'movie/(:num)' => 'movie/index/details',
It looks like you're new here. If you want to get involved, click one of these buttons!