Qoob Portfolio
The open qoob is a php mvc framework created to speed up the process of creating dynamic sites. This is the code running this website!
The open qoob is a php mvc framework created to speed up the process of creating dynamic sites. This is the code running this website!
<?php
/**
* portfolio qoob base class
*
* @author andrew harrison <andrew@harrison.nu>
* @copyright creative commons attribution-shareAlike 3.0 unported
* @license http://creativecommons.org/licenses/by-sa/3.0/
* @version 1.1.1
*/
namespace app;
class base {
/**
* variables
*/
protected
$qoob,
$domain;
/**
* constructor
* get a reference to the global qoob object and qoob domain
*/
function __construct() {
$this->qoob = \qoob::open();
$this->domain = \library::get('QOOB.domain');
}
}
?>