public function __construct() { // initial default helper path $this->addHelperPath(dirname(__FILE__) . '/Helper/'); }
/** * Layout constructor * - init Layout helpers * - call parent View constructor */ public function __construct() { // init layout helper path $this->addHelperPath(dirname(__FILE__) . '/Helper/'); // init view helper path parent::__construct(); }