Esempio n. 1
0
 public function __construct($params)
 {
     parent::__construct();
     if (!empty($params)) {
         $this->params = $params;
     }
 }
Esempio n. 2
0
 function __construct()
 {
     parent::__construct();
     $this->rest = REST_Server::instance();
     $this->_table = 'common_account_info';
     $this->_primary = 'account_id';
 }
Esempio n. 3
0
 public function __construct($params = null)
 {
     parent::__construct();
     if (is_object($params) && !empty($params)) {
         $this->params = $params;
     } else {
         logDebugMessages("Cannot init object " . get_class());
     }
 }
Esempio n. 4
0
 public function __construct($params)
 {
     parent::__construct();
     if (!empty($params)) {
         $this->params = $params;
         $this->river = $this->setRiver();
         $this->allTrailAssigned = $this->setAllTrailsAssigned();
         $this->subSections = $this->setSubSections();
     }
 }
Esempio n. 5
0
 function __construct()
 {
     parent::__construct();
     $this->_table = 'yaf_admin';
     $this->_primary = 'user_id';
 }
 function __construct()
 {
     parent::__construct();
     $this->_table = 'yaf_scaffold_config';
     $this->_primary = 'cid';
 }
Esempio n. 7
0
 function __construct($table, $primary)
 {
     parent::__construct();
     $this->_table = $table;
     $this->_primary = $primary;
 }
Esempio n. 8
0
 function __construct()
 {
     parent::__construct();
     $config = Yaf_Registry::get("config")->get('yaf')->get('db')->get('master');
     $this->database = $config->get('dbname');
 }
Esempio n. 9
0
 function __construct()
 {
     parent::__construct();
 }
 public function __construct($data = null)
 {
     $this->_fields = array('SellerId' => array('FieldValue' => null, 'FieldType' => 'string'), 'MWSAuthToken' => array('FieldValue' => null, 'FieldType' => 'string'), 'NextToken' => array('FieldValue' => null, 'FieldType' => 'string'));
     parent::__construct($data);
 }
Esempio n. 11
0
 public function __construct($params)
 {
     parent::__construct();
     $this->init($params);
 }
Esempio n. 12
0
File: DBO.php Progetto: phpon/on
 public function __construct($model)
 {
     parent::__construct($model);
 }