Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

XML format importer class

Copyright: 2008 Andrei Bautu
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 155 lines (6 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

xml_database_importer:: (4 methods):
  get_parser()
  tag_open()
  tag_close()
  cdata()


Class: xml_database_importer  - X-Ref

XML format importer class (uses SAX for speed and low memory footprint).
Provides logic for parsing XML data and calling appropriate callbacks.
Subclasses should define XML data sources.

get_parser()   X-Ref
Creates and setups a SAX parser. Subclasses should use this method to
create the XML parser.

return: resource XML parser resource.

tag_open($parser, $tag, $attributes)   X-Ref
Callback function. Called by the XML parser for opening tags processing.

param: resource $parser XML parser resource.
param: string $tag name of opening tag
param: array $attributes set of opening tag XML attributes
return: void

tag_close($parser, $tag)   X-Ref
Callback function. Called by the XML parser for closing tags processing.

param: resource $parser XML parser resource.
param: string $tag name of opening tag
return: void

cdata($parser, $data)   X-Ref
Callback function. Called by the XML parser for character data processing.

param: resource $parser XML parser resource.
param: string $data character data to be processed
return: void