Moodle PHP Documentation 4.3
Moodle 4.3.5 (Build: 20240610) (7dcfaa79f78)
|
XML format exporter class to memory storage (i.e. 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) | |
Specific implementation for memory exporting the database: it clear the buffer and calls superclass. | |
export_table_data (xmldb_table $table, $data) | |
Callback function. | |
finish_database_export () | |
Callback function. | |
finish_table_export (xmldb_table $table) | |
Callback function. | |
get_output () | |
Returns the output of the exporters. | |
Protected Member Functions | |
output ($text) | |
Specific output method for the memory XML sink. | |
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. | |
string | $data |
String with XML data. | |
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 to memory storage (i.e.
a string).
|
inherited |
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.
|
inherited |
Callback function.
Outputs table opening tag.
xmldb_table | $table | - XMLDB object for the exported table |
void |
Reimplemented from database_exporter.
string_xml_database_exporter::export_database | ( | $description = null | ) |
Specific implementation for memory exporting the database: it clear the buffer and calls superclass.
dbtransfer_exception | if any checking (e.g. database schema) fails |
string | $description | a user description of the data. |
void |
Reimplemented from database_exporter.
|
inherited |
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.
|
inherited |
|
inherited |
Callback function.
Outputs table closing tag.
xmldb_table | $table | - XMLDB object for the exported table |
Reimplemented from database_exporter.
string_xml_database_exporter::get_output | ( | ) |
Returns the output of the exporters.
string | XML data from exporter |
|
protected |
Specific output method for the memory XML sink.
string | $text |
Reimplemented from 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.