* @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'); } } ?>