__construct() 공개 메소드

Create view instance, initial default helper path
public __construct ( )
예제 #1
0
파일: Layout.php 프로젝트: dezvell/mm.local
 /**
  * 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();
 }