Exemplo 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'];
     }
 }
Exemplo n.º 2
0
Arquivo: feeder.php Projeto: ajb/rfpez
 function __construct($path, $dataURL = null)
 {
     parent::__construct();
     $this->alternate = array_keys(FeedOut::$formats);
     $this->DataURL($dataURL);
     $this->SetPath($path);
 }
Exemplo n.º 3
0
 function __construct(array $data = null)
 {
     parent::__construct();
     $data and $this->SetFromArray($data);
 }
Exemplo n.º 4
0
 function __construct($core, $filename)
 {
     $this->filename = $filename;
     parent::__construct($core);
 }
Exemplo n.º 5
0
 function __construct($core, $start_params = array())
 {
     $this->query = $this->query($core);
     parent::__construct($core, $start_params);
 }
Exemplo n.º 6
0
 function __construct($core, $wfstorage, $start_params = array())
 {
     $this->wfstorage = $wfstorage;
     parent::__construct($core, $start_params);
 }