ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilImportContainer Class Reference

Import class. More...

+ Inheritance diagram for ilImportContainer:
+ Collaboration diagram for ilImportContainer:

Public Member Functions

 __construct ($a_target_id)
 Constructor. More...
 
- Public Member Functions inherited from ilImport
 __construct ($a_target_id=0)
 Constructor. More...
 
 getConfig ($a_comp)
 Get configuration (note that configurations are optional, null may be returned!) More...
 
 getMapping ()
 Get mapping object. More...
 
 setEntityTypes ($a_val)
 Set entity types. More...
 
 getEntityTypes ()
 Get entity types. More...
 
 addSkipEntity ($a_component, $a_entity, $skip=true)
 Add skip entity. More...
 
 setCurrentDataset ($a_val)
 Set currrent dataset. More...
 
 getCurrentDataset ()
 Get currrent dataset. More...
 
 afterEntityTypes ()
 After entity types are parsed. More...
 
 importRecord ($a_entity, $a_types, $a_record)
 After entity types are parsed. More...
 
 importEntity ($a_tmp_file, $a_filename, $a_entity, $a_component, $a_copy_file=false)
 Import entity. More...
 
 importObject ($a_new_obj, $a_tmp_file, $a_filename, $a_type, $a_comp="", $a_copy_file=false)
 Import repository object export file. More...
 
 importFromDirectory ($dir, $a_type, $a_comp)
 Import from directory. More...
 
 getTemporaryImportDir ()
 Get temporary import directory. More...
 
 processItemXml ($a_entity, $a_schema_version, $a_id, $a_xml, $a_install_id, $a_install_url)
 Process item xml. More...
 

Protected Member Functions

 doImportObject ($dir, $type)
 Import a container. More...
 
 createDummy ($a_type)
 Create dummy object. More...
 
- Protected Member Functions inherited from ilImport
 setTemporaryImportDir ($a_val)
 Set temporary import directory. More...
 
 doImportObject ($dir, $a_type, $a_component="", $a_tmpdir="")
 Import repository object export file. More...
 

Additional Inherited Members

- Protected Attributes inherited from ilImport
 $log
 
 $install_id = ""
 
 $install_url = ""
 
 $entities = ""
 
 $tmp_import_dir = ""
 
 $mapping = null
 
 $skip_entity = array()
 
 $configs = array()
 

Detailed Description

Import class.

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

Definition at line 13 of file class.ilImportContainer.php.

Constructor & Destructor Documentation

◆ __construct()

ilImportContainer::__construct (   $a_target_id)

Constructor.

Parameters
int$a_target_idId of parent node
Returns

Reimplemented from ilImport.

Definition at line 20 of file class.ilImportContainer.php.

21 {
22 parent::__construct($a_target_id);
23 }

Member Function Documentation

◆ createDummy()

ilImportContainer::createDummy (   $a_type)
protected

Create dummy object.

Parameters
object$a_type
Returns

Definition at line 91 of file class.ilImportContainer.php.

92 {
93 global $objDefinition;
94
95 $class_name = "ilObj".$objDefinition->getClassName($a_type);
96 $location = $objDefinition->getLocation($a_type);
97
98 include_once($location."/class.".$class_name.".php");
99 $new = new $class_name();
100 $new->setTitle('Import');
101 $new->create(true);
102 $new->createReference();
103 $new->putInTree($this->getMapping()->getTargetId());
104 $new->setPermissions($this->getMapping()->getTargetId());
105
106 $this->getMapping()->addMapping('Services/Container','objs', 0, $new->getId());
107 $this->getMapping()->addMapping('Services/Container','refs', 0,$new->getRefId());
108
109 return $new;
110
111 }
$location
Definition: buildRTE.php:44
getMapping()
Get mapping object.

References $location, and ilImport\getMapping().

Referenced by doImportObject().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ doImportObject()

ilImportContainer::doImportObject (   $dir,
  $type 
)
protected

Import a container.

Parameters
object$dir
object$type
Returns

Definition at line 32 of file class.ilImportContainer.php.

33 {
34 $manifest_file = $dir."/manifest.xml";
35 if(!file_exists($manifest_file))
36 {
37 return false;
38 }
39
40 include_once("./Services/Export/classes/class.ilManifestParser.php");
41 $parser = new ilManifestParser($manifest_file);
42
43
44 // begin-patch optes_lok_export
45
46 // Handling single containers without subitems
47
48 // @todo: check if this is required
49 // all container have container export sets
50 $all_importers = array();
51
52 if(!$parser->getExportSets())
53 {
54 $this->createDummy($type);
55 $import_info = parent::doImportObject($dir,$type);
56
57 $all_importers = array_merge($all_importers, $import_info['importers']);
58 return $import_info;
59 //return $import_info['new_id'];
60 }
61
62 // Handling containers with subitems
63 $first = true;
64 foreach($parser->getExportSets() as $set)
65 {
66 $import_info = parent::doImportObject($dir.DIRECTORY_SEPARATOR.$set['path'],$set['type']);
67
68 $all_importers = array_merge($all_importers, $import_info['importers']);
69 if($first)
70 {
71 $ret = $import_info;
72 //$ret = $import_info['new_id'];
73 $first = false;
74 }
75 }
76 // after container import is finished, call all importers to perform a final processing
77 foreach((array) $all_importers as $importer)
78 {
79 $importer->afterContainerImportProcessing($this->getMapping());
80 }
81 // end-patch optes_lok_export
82
83 return $ret;
84 }
createDummy($a_type)
Create dummy object.
Manifest parser for ILIAS standard export files.

References $ret, createDummy(), and ilImport\getMapping().

+ Here is the call graph for this function:

The documentation for this class was generated from the following file: