Esempio n. 1
0
 function __construct($core, $start_params = array())
 {
     parent::__construct($core, $start_params);
     $this->db = $this->db_object($core);
     if (isset($start_params['db'])) {
         $this->db_params = $start_params['db'];
     }
 }
Esempio n. 2
0
File: feeder.php Progetto: ajb/rfpez
 function __construct($path, $dataURL = null)
 {
     parent::__construct();
     $this->alternate = array_keys(FeedOut::$formats);
     $this->DataURL($dataURL);
     $this->SetPath($path);
 }
Esempio n. 3
0
 function __construct(array $data = null)
 {
     parent::__construct();
     $data and $this->SetFromArray($data);
 }
Esempio n. 4
0
 function __construct($core, $filename)
 {
     $this->filename = $filename;
     parent::__construct($core);
 }
Esempio n. 5
0
 function __construct($core, $start_params = array())
 {
     $this->query = $this->query($core);
     parent::__construct($core, $start_params);
 }
Esempio n. 6
0
 function __construct($core, $wfstorage, $start_params = array())
 {
     $this->wfstorage = $wfstorage;
     parent::__construct($core, $start_params);
 }