ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilAdvancedMetaDataImporter.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once("./Services/Export/classes/class.ilXmlImporter.php");
5
14{
15 function importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
16 {
17 include_once "Services/AdvancedMetaData/classes/class.ilAdvancedMDParser.php";
18 include_once "Services/AdvancedMetaData/classes/class.ilAdvancedMDRecord.php";
19 include_once "Services/Container/classes/class.ilContainer.php";
20 include_once "Services/Object/classes/class.ilObjectServiceSettingsGUI.php";
21
22 $parser = new ilAdvancedMDParser($a_id, $a_mapping);
23 $parser->setXMLContent($a_xml);
24 $parser->startParsing();
25
26 // records with imported values should be selected
27 foreach($parser->getRecordIds() as $obj_id => $sub_types)
28 {
30
31 foreach($sub_types as $sub_type => $rec_ids)
32 {
33 ilAdvancedMDRecord::saveObjRecSelection($obj_id, $sub_type, array_unique($rec_ids), false);
34 }
35 }
36 }
37}
38
39?>
static saveObjRecSelection($a_obj_id, $a_sub_type="", array $a_records=null, $a_delete_before=true)
Save repository object record selection.
importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
Import xml representation.
_writeContainerSetting($a_id, $a_keyword, $a_value)
Xml importer class.