38 lines
722 B
PHP
Executable File
38 lines
722 B
PHP
Executable File
<?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();
|
|
$this->load_model('meta\data_model');
|
|
$db = \miniMVC\db::get_instance();
|
|
|
|
$this->page->queries =& $db->queries;
|
|
}
|
|
|
|
}
|