Hylax_Storage() public method

Constructor
public Hylax_Storage ( array $params )
$params array Any parameters needed for this storage driver.
Exemplo n.º 1
0
 function Hylax_Storage_sql($params)
 {
     parent::Hylax_Storage($params);
     $this->initialise();
     /* Set up the storage attributes object in the $_attributes var. */
     $attrib_params = array('primary_table' => 'hylax_faxes', 'attribute_table' => 'hylax_fax_attributes', 'id_column' => 'fax_id');
     $this->_attributes = new Hylax_SQL_Attributes($this->_db, $attrib_params);
 }