importer = new database_importer($mdb_target, $check_schema); } /** * Callback function. Calls importer's begin_database_import callback method. * * @param float $version the version of the system which generating the data * @param string $timestamp the timestamp of the data (in ISO 8601) format. * @param string $description a user description of the data. * @return void */ public function begin_database_export($version, $release, $timestamp, $description) { $this->importer->begin_database_import($version, $timestamp, $description); } /** * Callback function. Calls importer's begin_table_import callback method. * * @param xmldb_table $table - XMLDB object for the exported table * @return void */ public function begin_table_export(xmldb_table $table) { $this->importer->begin_table_import($table->getName(), $table->getHash()); } /** * Callback function. Calls importer's import_table_data callback method. * * @param xmldb_table $table - XMLDB object of the table from which data * was retrived * @param object $data - data object (fields and values from record) * @return void */ public function export_table_data(xmldb_table $table, $data) { $this->importer->import_table_data($table->getName(), $data); } /** * Callback function. Calls importer's finish_table_import callback method. * @param xmldb_table $table - XMLDB object for the exported table * @return void */ public function finish_table_export(xmldb_table $table) { $this->importer->finish_table_import($table->getName()); } /** * Callback function. Calls importer's finish_database_import callback method. * @return void */ public function finish_database_export() { $this->importer->finish_database_import(); } }