Пример #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'];
     }
 }
Пример #2
0
 function __construct($path, $dataURL = null)
 {
     parent::__construct();
     $this->alternate = array_keys(FeedOut::$formats);
     $this->DataURL($dataURL);
     $this->SetPath($path);
 }
Пример #3
0
 function __construct(array $data = null)
 {
     parent::__construct();
     $data and $this->SetFromArray($data);
 }
Пример #4
0
 function __construct($core, $filename)
 {
     $this->filename = $filename;
     parent::__construct($core);
 }
Пример #5
0
 function __construct($core, $start_params = array())
 {
     $this->query = $this->query($core);
     parent::__construct($core, $start_params);
 }
Пример #6
0
 function __construct($core, $wfstorage, $start_params = array())
 {
     $this->wfstorage = $wfstorage;
     parent::__construct($core, $start_params);
 }