You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
432 B
22 lines
432 B
7 years ago
|
<?php
|
||
|
|
||
|
class Controller_Tvshow extends Controller_Home
|
||
|
{
|
||
|
public function action_index()
|
||
|
{
|
||
|
$tvshow_id = $this->param('tvshow_id');
|
||
|
|
||
|
$tvshow = Model_Tvshow::find_by_pk($tvshow_id);
|
||
|
|
||
|
if(!$tvshow)
|
||
|
Response::redirect('/home');
|
||
|
|
||
|
$tvshow->getMetaData();
|
||
|
|
||
|
$body = View::forge('tvshow/index');
|
||
|
|
||
|
$body->set('tvshow', $tvshow);
|
||
|
|
||
|
$this->template->body = $body;
|
||
|
}
|
||
|
}
|