19 declare(strict_types=1);
46 public function __construct(
string $a_file,
object $a_callback_obj,
string $a_callback_func)
48 $this->callback_obj = $a_callback_obj;
49 $this->callback_func = $a_callback_func;
69 parent::startParsing();
72 public function handleBeginTag($a_xml_parser,
string $a_name, array $a_attribs): void
74 if ($this->in_export_item) {
75 $this->export_item_writer->xmlStartTag($a_name, $a_attribs);
80 $this->entity = $a_attribs[
"Entity"];
81 $this->install_id = $a_attribs[
"InstallationId"];
82 $this->install_url = $a_attribs[
"InstallationUrl"];
83 $this->schema_version = $a_attribs[
"SchemaVersion"];
86 case "exp:ExportItem":
87 $this->in_export_item =
true;
88 $this->current_id = $a_attribs[
"Id"];
91 $this->expfiles[] = array(
92 "component" => $a_attribs[
"Component"] ??
null,
93 "path" => $a_attribs[
"Path"] ?? null
102 case "exp:ExportItem":
103 $this->in_export_item =
false;
105 $this->callback_obj->$cf(
107 $this->schema_version,
109 $this->export_item_writer->xmlDumpMem(
false),
116 if ($this->in_export_item) {
117 $this->export_item_writer->xmlEndTag($a_name);
120 $this->chr_data =
"";
128 $this->chr_data .= $a_data;
129 if ($this->in_export_item) {
130 $this->export_item_writer->xmlData($a_data);
handleCharacterData($a_xml_parser, string $a_data)
End Tag.
handleBeginTag($a_xml_parser, string $a_name, array $a_attribs)
ilXmlWriter $export_item_writer
setHandlers($a_xml_parser)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(string $a_file, object $a_callback_obj, string $a_callback_func)
ilExportFileParser constructor.
handleEndTag($a_xml_parser, string $a_name)
__construct(Container $dic, ilPlugin $plugin)