3 declare(strict_types=1);
19 public function init(): void
35 $parts = explode(
":", $a_id);
50 foreach ($raw as $item) {
51 $sub_items[$item[
"sub_type"]][] = $item[
"sub_id"];
56 foreach ($sub_items as $sub_type => $sub_ids) {
57 foreach (array_unique($sub_ids) as $sub_id) {
59 $defs = $values_record->getDefinitions();
60 $values_record->read();
61 foreach ($values_record->getADTGroup()->getElements() as $element_id => $element) {
62 if (!$element->isNull()) {
63 $def = $defs[$element_id];
64 $items[$rec_id][] = array(
65 'id' => $def->generateImportId($def->getFieldId()),
66 'sub_type' => $sub_type,
68 'value' => $def->getValueForXML($element)
76 $local_recs = array();
78 if ($rec_obj->getParentObject()) {
80 $rec_obj->toXML(
$xml);
83 $local_recs[$rec_obj->getRecordId()] = base64_encode(
$xml);
90 foreach ($items as $record_id => $record_items) {
91 $xml->xmlStartTag(
'AdvancedMetaData');
93 $is_local = array_key_exists($record_id, $local_recs);
98 if (!array_key_exists($record_id, self::$local_recs_done)) {
101 array(
'local_id' => $record_id),
102 $local_recs[$record_id]
105 self::$local_recs_done[] = $record_id;
109 foreach ($record_items as $item) {
112 'sub_type' => $item[
'sub_type'],
113 'sub_id' => $item[
'sub_id']
117 $att[
'local_rec_id'] = $record_id;
127 $xml->xmlEndTag(
'AdvancedMetaData');
130 return $xml->xmlDumpMem(
false);
139 "namespace" =>
"http://www.ilias.de/Services/AdvancedMetaData/advmd/4_4",
140 "xsd_file" =>
"ilias_advmd_4_4.xsd",
141 "uses_dataset" =>
true,
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static findByObjectId(int $a_obj_id)
Find all entries for object (regardless of sub-type/sub-id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...