mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
37 lines
1,018 B
PHP
37 lines
1,018 B
PHP
<?php //$Id$
|
|
|
|
/**
|
|
* XML format exporter class to memory storage (i.e. a string).
|
|
*/
|
|
class string_xml_database_exporter extends xml_database_exporter {
|
|
/** String with XML data. */
|
|
protected $data;
|
|
|
|
/**
|
|
* Specific output method for the memory XML sink.
|
|
*/
|
|
protected function output($text) {
|
|
$this->data .= $text;
|
|
}
|
|
|
|
/**
|
|
* Returns the output of the exporters
|
|
* @return string XML data from exporter
|
|
*/
|
|
public function get_output() {
|
|
return $this->data;
|
|
}
|
|
|
|
/**
|
|
* Specific implementation for memory exporting the database: it clear the buffer
|
|
* and calls superclass @see database_exporter::export_database().
|
|
*
|
|
* @exception dbtransfer_exception if any checking (e.g. database schema) fails
|
|
* @param string $description a user description of the data.
|
|
* @return void
|
|
*/
|
|
public function export_database($description=null) {
|
|
$this->data = '';
|
|
parent::export_database($description);
|
|
}
|
|
}
|