コード例 #1
0
ファイル: ForeignKey.php プロジェクト: phpwax/model
 public function __get($name)
 {
     if ($name == "value") {
         return $this->model->{$this->col_name};
     }
     return parent::__get($name);
 }
コード例 #2
0
ファイル: FileField.php プロジェクト: phpwax/model
 public function setup()
 {
     $this->create_directory(WAX_ROOT . $this->file_root);
     parent::setup();
 }