예제 #1
0
파일: Form.php 프로젝트: moiseh/codegen
 public function __construct($properties = array())
 {
     $this->method = 'POST';
     $this->fields = array();
     $this->security = new CSRF($this);
     parent::__construct($properties);
 }
예제 #2
0
파일: View.php 프로젝트: moiseh/codegen
 public function __construct($properties = array())
 {
     $this->nav = new Navbar();
     $this->columns = array();
     parent::__construct($properties);
     // convert data
     if (is_array($this->query)) {
         $this->query = new \Meta\Query($this->query);
     }
 }