コード例 #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);
     }
 }