Advertisement
peterurfi

Untitled

Feb 11th, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. class Dashboard extends Controller {
  4.     function __construct() {
  5.         parent::__construct();
  6.     }
  7.  
  8.     public function init() {
  9.         if(is_null(Session::get('user_id')))
  10.             header('Location: /mvc/index');
  11.         else
  12.             $this->view->render('dashboard');
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement