Tags
Table of Contents
- $boolval : mixed
- Boolean values.
- $current_data : mixed
- Current data value.
- $current_element : mixed
- Current data element.
- $level : mixed
- Current level: 'module', 'subject', 'question', 'answer'.
- $level_data : mixed
- Array to store current level data.
- $qtype : mixed
- Type of questions.
- $questionhash : mixed
- Store hash values of question descriptions.
- $xmlfile : mixed
- XML file.
- __construct() : true
- Class constructor.
- __destruct() : mixed
- Class destructor;
- addAnswer() : mixed
- Add a new answer if not exist.
- addModule() : mixed
- Add a new module if not exist.
- addQuestion() : mixed
- Add a new question if not exist.
- addSubject() : mixed
- Add a new subject if not exist.
- endElementHandler() : mixed
- Sets the end element handler function for the XML parser parser.end_element_handler.
- segContentHandler() : mixed
- Sets the character data handler function for the XML parser parser.handler.
- startElementHandler() : mixed
- Sets the start element handler function for the XML parser parser.start_element_handler.
Properties
$boolval
Boolean values.
private mixed $boolval = array('false' => '0',
'true' => '1')
Tags
$current_data
Current data value.
private mixed $current_data = ''
Tags
$current_element
Current data element.
private mixed $current_element =
''
Tags
$level
Current level: 'module', 'subject', 'question', 'answer'.
private mixed $level = ''
Tags
$level_data
Array to store current level data.
private mixed $level_data = array()
Tags
$qtype
Type of questions.
private mixed $qtype = array('single' => '1',
'multiple' => '2', 'text' => '3', 'ordering' =>
'4')
Tags
$questionhash
Store hash values of question descriptions.
private mixed $questionhash = array()
This is used to avoid the 255 chars limitation for string indexes on MySQL
Tags
$xmlfile
XML file.
private mixed $xmlfile = 0
Tags
Methods
__construct()
Class constructor.
public __construct( $xmlfile)
: true
Parameters
Return values
true —or die for parsing error
__destruct()
Class destructor;
public __destruct()
: mixed
Return values
mixed —addAnswer()
Add a new answer if not exist.
private addAnswer()
: mixed
Tags
Return values
mixed —addModule()
Add a new module if not exist.
private addModule()
: mixed
Tags
Return values
mixed —addQuestion()
Add a new question if not exist.
private addQuestion()
: mixed
Tags
Return values
mixed —addSubject()
Add a new subject if not exist.
private addSubject()
: mixed
Tags
Return values
mixed —endElementHandler()
Sets the end element handler function for the XML parser parser.end_element_handler.
private endElementHandler( $parser,
$name)
: mixed
Parameters
- $parser :
-
(resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $name :
-
(string) The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
Tags
Return values
mixed —segContentHandler()
Sets the character data handler function for the XML parser parser.handler.
private segContentHandler( $parser,
$data)
: mixed
Parameters
- $parser :
-
(resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $data :
-
(string) The second parameter, data, contains the character data as a string.
Tags
Return values
mixed —startElementHandler()
Sets the start element handler function for the XML parser parser.start_element_handler.
private startElementHandler( $parser,
$name,
$attribs)
: mixed
Parameters
- $parser :
-
(resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $name :
-
(string) The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
- $attribs :
-
(array) The third parameter, attribs, contains an associative array with the element's attributes (if any). The keys of this array are the attribute names, the values are the attribute values. Attribute names are case-folded on the same criteria as element names. Attribute values are not case-folded. The original order of the attributes can be retrieved by walking through attribs the normal way, using each(). The first key in the array was the first attribute, and so on.