コード例 #1
0
ファイル: Realty.php プロジェクト: alex731/m12private
 public function __construct($options = null)
 {
     parent::__construct();
     $this->_last_id = 0;
     if (is_array($options)) {
         $this->create($options);
     }
 }
コード例 #2
0
ファイル: ListData.php プロジェクト: alex731/m12private
 public function __construct(array $options = null)
 {
     parent::__construct();
     $this->last_id = 0;
     if (is_array($options)) {
         return $this->create($options);
     }
     return true;
 }
コード例 #3
0
ファイル: User.php プロジェクト: alex731/m12private
 public function __construct(array $options = null)
 {
     parent::__construct($options);
 }