meta/app/classes/controller.php

66 lines
1.1 KiB
PHP
Raw Normal View History

2012-07-12 10:31:08 -04:00
<?php
/**
* meta
*
* Hierarchial data tool
*
* @package meta
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/meta
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
namespace meta;
/**
* Base controller class to hold common functionality
*
* @param package meta
*/
abstract class Controller extends \miniMVC\Controller {
/**
* Create the controller and build page header
*/
public function __construct()
{
parent::__construct();
2012-09-12 10:36:43 -04:00
$this->load_model('meta\data_model');
$this->load_model('meta\user_model');
2012-08-31 16:18:23 -04:00
$this->session =& \miniMVC\Session::get_instance();
// Check if user is logged in
$this->check_login_status();
2012-07-12 10:31:08 -04:00
$this->page->build_header();
}
2012-08-31 16:18:23 -04:00
/**
* Require user login for access
*/
private function check_login_status()
{
if ( ! isset($this->session->uid))
{
// Redirect to login
}
return;
}
2012-07-12 10:31:08 -04:00
/**
* Destruct controller and build page footer
*/
public function __destruct()
{
2012-09-12 12:57:41 -04:00
$this->page->set_foot_js_group('js');
2012-07-12 10:31:08 -04:00
$this->page->build_footer();
}
}