| Moodle APIs 4.3
    Moodle 4.3.6 (Build: 20240812) | 
XML format exporter class. More...
| Public Member Functions | |
| begin_database_export ($version, $release, $timestamp, $description) | |
| Callback function. | |
| begin_table_export (xmldb_table $table) | |
| Callback function. | |
| export_database ($description=null) | |
| Generic method to export the database. | |
| export_table_data (xmldb_table $table, $data) | |
| Callback function. | |
| finish_database_export () | |
| Callback function. | |
| finish_table_export (xmldb_table $table) | |
| Callback function. | |
| Protected Member Functions | |
| output ($text) | |
| Generic output method. | |
| Protected Attributes | |
| bool | $check_schema | 
| Boolean flag - whether or not to check that XML database schema matches the RDBMS database schema before exporting (used by. | |
| database_manager | $manager | 
| Database manager of the source database (a. | |
| moodle_database | $mdb | 
| Connection to the source database (a. | |
| xmldb_structure | $schema | 
| Source database schema in XMLDB format (a. | |
XML format exporter class.
Provides logic for writing XML tags and data inside appropriate callbacks. Subclasses should define XML data sinks.
| xml_database_exporter::begin_database_export | ( | $version, | |
| $release, | |||
| $timestamp, | |||
| $description ) | 
Callback function.
Outputs open XML PI and moodle_database opening tag.
| float | $version | the version of the system which generating the data | 
| string | $release | moodle release info | 
| string | $timestamp | the timestamp of the data (in ISO 8601) format. | 
| string | $description | a user description of the data. | 
| void | 
Reimplemented from database_exporter.
| xml_database_exporter::begin_table_export | ( | xmldb_table | $table | ) | 
Callback function.
Outputs table opening tag.
| xmldb_table | $table | - XMLDB object for the exported table | 
| void | 
Reimplemented from database_exporter.
| 
 | inherited | 
Generic method to export the database.
It checks the schema (if
| dbtransfer_exception | if any checking (e.g. database schema) fails | 
| string | $description | a user description of the data. | 
Reimplemented in file_xml_database_exporter, and string_xml_database_exporter.
| xml_database_exporter::export_table_data | ( | xmldb_table | $table, | 
| $data ) | 
Callback function.
Outputs record tag with field subtags and data.
| xmldb_table | $table | - XMLDB object of the table from which data was retrieved | 
| object | $data | - data object (fields and values from record) | 
| void | 
Reimplemented from database_exporter.
| xml_database_exporter::finish_database_export | ( | ) | 
| xml_database_exporter::finish_table_export | ( | xmldb_table | $table | ) | 
Callback function.
Outputs table closing tag.
| xmldb_table | $table | - XMLDB object for the exported table | 
Reimplemented from database_exporter.
| 
 | abstractprotected | 
Generic output method.
Subclasses should implement it with code specific to the target XML sink.
Reimplemented in file_xml_database_exporter, and string_xml_database_exporter.
| 
 | protectedinherited | 
Boolean flag - whether or not to check that XML database schema matches the RDBMS database schema before exporting (used by.
| 
 | protectedinherited | 
Database manager of the source database (a.
| 
 | protectedinherited | 
Connection to the source database (a.
| 
 | protectedinherited | 
Source database schema in XMLDB format (a.