function __construct($a = '', &$caller)
 {
     parent::__construct($a, $caller);
     $this->use_store = $a['use_store'];
     $this->store_size = $a['store_size'];
     $this->reset_tables = $a['reset_tables'];
     $this->path = $a['store_root'];
     $this->dump_location = $a['dump_location'];
     $this->type = $a['document_type'];
     $this->backup_type = $a['backup_type'];
     $this->ext = $a['extension'];
     $this->a['ns'] = $this->loadPrefixes();
 }
 function __construct($a, &$caller)
 {
     parent::__construct($a, $caller);
 }
Example #3
0
 function __construct($a = '', &$caller)
 {
     /* caller is a store */
     parent::__construct($a, $caller);
 }
 function __construct($a, &$caller)
 {
     parent::__construct($a, $caller);
     $this->is_remote = 1;
 }
Example #5
0
 function __construct($a, &$caller, &$data_store)
 {
     /* caller has to be a store */
     parent::__construct($a, $caller);
     $this->data_store = $data_store;
 }