ILIAS  release_4-4 Revision
class.ilLearningModuleImporter.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Export/classes/class.ilXmlImporter.php");
5 
14 {
21  function importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
22  {
23  include_once './Modules/File/classes/class.ilObjFile.php';
24 
25  // case i container
26  if($new_id = $a_mapping->getMapping('Services/Container','objs',$a_id))
27  {
28  $newObj = ilObjectFactory::getInstanceByObjId($new_id,false);
29  $newObj->createLMTree();
30  $newObj->setImportDirectory(dirname(rtrim($this->getImportDirectory(),'/')));
31  }
32  else // case ii, non container
33  {
34  // Shouldn't happen
35  $GLOBALS['ilLog']->write(__METHOD__.': Called in non container mode');
36  return false;
37  }
38 
39  $mess = $newObj->importFromDirectory($this->getImportDirectory(),true);
40  $GLOBALS['ilLog']->write(__METHOD__.': Import message is: '.$mess);
41 
42  $a_mapping->addMapping("Modules/LearningModule", "lm", $a_id, $newObj->getId());
43  }
44 }
45 
46 ?>
getImportDirectory()
Get import directory.
$GLOBALS['ct_recipient']
getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
Import XML.
Xml importer class.