39 xml_set_object($a_xml_parser, $this);
40 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
41 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
47 public function handlerBeginTag($a_xml_parser,
string $a_name, array $a_attribs) : void
57 $this->
addProperty(
'type', (
string) $a_attribs[
'type']);
61 $a_attribs[
"obj_id"] ??
'',
65 $this->
addProperty(
'offline', $a_attribs[
'offline']);
77 $this->time_target = [];
78 $this->ref_id = $a_attribs[
"ref_id"];
79 $this->parent_id = $a_attribs[
'parent_id'];
83 $this->time_target[
'timing_type'] = $a_attribs[
'type'];
87 $this->time_target[
'timing_visibility'] = $a_attribs[
'visibility'];
88 if (isset($a_attribs[
'starting_time'])) {
89 $this->time_target[
'starting_time'] = $a_attribs[
'starting_time'];
91 if (isset($a_attribs[
'ending_time'])) {
92 $this->time_target[
'ending_time'] = $a_attribs[
'ending_time'];
95 if ($a_attribs[
'ending_time'] < $a_attribs[
'starting_time']) {
101 $this->time_target[
'changeable'] = $a_attribs[
'changeable'];
103 if (isset($a_attribs[
'starting_time'])) {
104 $this->time_target[
'suggestion_start'] = $a_attribs[
'starting_time'];
106 if (isset($a_attribs[
'ending_time'])) {
107 $this->time_target[
'suggestion_end'] = $a_attribs[
'ending_time'];
131 $this->
addProperty(
'description', trim($this->cdata));
139 $this->
addProperty(
'create_date', trim($this->cdata));
143 $this->
addProperty(
'last_update', trim($this->cdata));
147 $this->
addProperty(
'import_id', trim($this->cdata));
151 $this->
addReference($this->ref_id, $this->parent_id, $this->time_target);
165 if ($a_data !==
"\n") {
167 $a_data = preg_replace(
"/\t+/",
" ", $a_data);
169 $this->cdata .= $a_data;
183 private function addReference(
int $a_ref_id,
int $a_parent_id, array $a_time_target) : void
185 $reference[
'ref_id'] = $a_ref_id;
186 $reference[
'parent_id'] = $a_parent_id;
187 $reference[
'time_target'] = $a_time_target;
189 if (isset($reference[
'time_target'][
'changeable']) && $reference[
'time_target'][
'changeable'] &&
190 !isset($reference[
'time_target'][
'suggestion_start'], $reference[
'time_target'][
'suggestion_end'])) {
192 'Missing attributes: "starting_time" and "ending_time" required for attribute "changeable"'
addReference(int $a_ref_id, int $a_parent_id, array $a_time_target)
Exception class for ObjectXMLWriter and ObjectXMLParser.
addProperty(string $a_name, $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
handlerBeginTag($a_xml_parser, string $a_name, array $a_attribs)
handlerCharacterData($a_xml_parser, string $a_data)
static __extractId(string $ilias_id, int $inst_id)
extract ref id from role title, e.g.
__construct(Container $dic, ilPlugin $plugin)
setHandlers($a_xml_parser)
handlerEndTag($a_xml_parser, string $a_name)
setXMLContent(string $a_xml_content)
__construct(string $a_xml_data='', ?bool $throw_exception=false)