42 xml_set_object($a_xml_parser, $this);
43 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
44 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
54 parent::clearTables();
56 $this->db->manipulate(
"DELETE FROM module_class");
73 $this->current_component = $this->type .
"/" .
$this->name;
74 $this->db->manipulateF(
75 "INSERT INTO il_component (type, name, id) " .
77 array(
"text",
"text",
"text"),
78 array($this->type, $this->name, $a_attribs[
"id"])
85 $this->db->manipulateF(
86 "INSERT INTO module_class (module, class, dir) " .
88 array(
"text",
"text",
"text"),
89 array($this->name, $a_attribs[
"name"], $a_attribs[
"dir"])
96 parent::handlerBeginTag($a_xml_parser, $a_name, $a_attribs);
108 parent::handlerEndTag($a_xml_parser, $a_name);
121 parent::handlerCharacterData($a_xml_parser, $a_data);
124 $a_data = preg_replace(
"/\n/",
"", $a_data);
125 $a_data = preg_replace(
"/\t+/",
"", $a_data);
127 if (!empty($a_data)) {
128 switch ($this->current_tag) {
setComponentId($a_component_id)
Set from module or service reader.
startParsing()
stores xml data in array
setHandlers($a_xml_parser)
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
start tag handler
handlerCharacterData($a_xml_parser, $a_data)
end tag handler
handlerEndTag($a_xml_parser, $a_name)
end tag handler
Component definition reader (reads common tags in module.xml and service.xml files) Name is misleadin...
clearTables()
clear the tables