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.
PlexShare/fuel/app/classes/controller/movie.php

41 lines
806 B

7 years ago
<?php
use Fuel\Core\Response;
use Fuel\Core\View;
class Controller_Movie extends Controller_Home
{
public function action_index()
{
$movie_id = $this->param('movie_id');
if(!$movie_id)
Response::redirect('/home');
$movie = Model_Movie::find_by_pk($movie_id);
if(!$movie)
Response::redirect('/home');
$movie->getMetaData();
$body = View::forge('movie/index');
7 years ago
$body->set('movie', $movie);
$this->template->body = $body;
}
public function action_list()
{
$movies = Model_Movie::getList();
if(!$movies)
Response::redirect('/home');
$body = View::forge('movie/list');
$body->set('movies', $movies);
$this->template->body = $body;
}
}