/** * For Templater Vars */ function __call($func, $args) { if (in_array($func, array('get', 'getRef', 'set', 'dump'))) { return call_user_func_array(array($this->_store, $func), $args); } parent::__call($func, $args); }
/** * Construct * * @var $default */ public function __construct($default = false) { parent::__construct(); if (is_array($default)) { $this->_vars = $default; } }
/** * Set Parent */ public function setParent(NyaaObject $o) { $this->setLogger($o->getLogger()); }
function __construct($fw) { $this->FW = $fw; parent::__construct(); }
/** * construct */ public function __construct() { parent::__construct(); $this->last = $this; }
function __construct() { parent::__construct(); $this->store = new NyaaStore(); }