コード例 #1
0
ファイル: testing.php プロジェクト: Bob-586/old_cx_home
 public function __construct($options = array())
 {
     $options['table'] = $this->table;
     $options['key'] = $this->key;
     parent::__construct($options);
 }
コード例 #2
0
ファイル: users.php プロジェクト: Bob-586/old_cx_home
 public function __construct($options)
 {
     $this->api = isset($options['api']) ? $options['api'] : true;
     parent::__construct(array('table' => $this->table, 'key' => $this->key));
 }
コード例 #3
0
 public function __construct($table)
 {
     $this->table = $table;
     parent::__construct(array('table' => $this->table, 'key' => $this->key));
 }