39 public function __construct(?
string $a_path, $a_ctype, $a_cname, $a_slot_id, $a_pname)
43 $this->ctype = $a_ctype;
44 $this->cname = $a_cname;
45 $this->slot_id = $a_slot_id;
46 $this->pname = $a_pname;
55 $ilDB = $DIC->database();
58 $ilDB->manipulate(
"DELETE FROM il_event_handling WHERE component = " .
$ilDB->quote($component,
'text'));
64 if ($this->
getInputType() ===
'file' && !file_exists($this->xml_file)) {
68 parent::startParsing();
73 xml_set_object($a_xml_parser, $this);
74 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
75 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
89 $ilDB = $DIC->database();
91 if ($a_name ===
"event") {
93 $q =
"INSERT INTO il_event_handling (component, type, id) VALUES (" .
94 $ilDB->quote($component,
"text") .
"," .
95 $ilDB->quote($a_attribs[
"type"],
"text") .
"," .
96 $ilDB->quote($a_attribs[
"id"],
"text") .
")";
97 $ilDB->manipulate($q);
setHandlers($a_xml_parser)
__construct(?string $a_path, $a_ctype, $a_cname, $a_slot_id, $a_pname)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
handlerEndTag($a_xml_parser, $a_name)
end tag handler
clearEvents()
Delete the event listeneing information.
handlerCharacterData($a_xml_parser, $a_data)
end tag handler
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
start tag handler