43 xml_set_object($a_xml_parser, $this);
44 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
45 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
54 $this->db->manipulate(
"DELETE FROM service_class");
71 $this->current_component = $this->type .
"/" .
$this->name;
72 $this->db->manipulateF(
73 "INSERT INTO il_component (type, name, id) " .
75 array(
"text",
"text",
"text"),
76 array($this->type, $this->name, $a_attribs[
"id"])
83 $this->db->manipulateF(
84 "INSERT INTO service_class (service, class, dir) " .
86 array(
"text",
"text",
"text"),
87 array($this->name, $a_attribs[
"name"], $a_attribs[
"dir"])
93 parent::handlerBeginTag($a_xml_parser, $a_name, $a_attribs);
105 parent::handlerEndTag($a_xml_parser, $a_name);
118 parent::handlerCharacterData($a_xml_parser, $a_data);
121 $a_data = preg_replace(
"/\n/",
"", $a_data);
122 $a_data = preg_replace(
"/\t+/",
"", $a_data);
124 if (!empty($a_data)) {
125 switch ($this->current_tag) {
setComponentId($a_component_id)
Set from module or service reader.
handlerCharacterData($a_xml_parser, $a_data)
end tag handler
startParsing()
stores xml data in array
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
start tag handler
setHandlers($a_xml_parser)
Component definition reader (reads common tags in module.xml and service.xml files) Name is misleadin...
clearTables()
clear the tables
handlerEndTag($a_xml_parser, $a_name)
end tag handler