ILIAS  release_4-4 Revision
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...
 
 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...
 
 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
 doImportObject ($dir, $a_type, $a_component="", $a_tmpdir="")
 Import repository object export file. More...
 

Additional Inherited Members

- Protected Attributes inherited from ilImport
 $install_id = ""
 
 $install_url = ""
 
 $entities = ""
 
 $mapping = null
 
 $skip_entity = 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

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 72 of file class.ilImportContainer.php.

References $location, and ilImport\getMapping().

Referenced by doImportObject().

73  {
74  global $objDefinition;
75 
76  $class_name = "ilObj".$objDefinition->getClassName($a_type);
77  $location = $objDefinition->getLocation($a_type);
78 
79  include_once($location."/class.".$class_name.".php");
80  $new = new $class_name();
81  $new->setTitle('Import');
82  $new->create(true);
83  $new->createReference();
84  $new->putInTree($this->getMapping()->getTargetId());
85  $new->setPermissions($this->getMapping()->getTargetId());
86 
87  $this->getMapping()->addMapping('Services/Container','objs', 0, $new->getId());
88  $this->getMapping()->addMapping('Services/Container','refs', 0,$new->getRefId());
89 
90  return $new;
91 
92  }
$location
Definition: buildRTE.php:44
getMapping()
Get mapping object.
+ 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.

References $GLOBALS, $ret, and createDummy().

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  // Handling single containers without subitems
44  if(!$parser->getExportSets())
45  {
46  $this->createDummy($type);
47  $new_id = parent::doImportObject($dir,$type);
48  return $new_id;
49  }
50 
51  // Handling containers with subitems
52  $first = true;
53  foreach($parser->getExportSets() as $set)
54  {
55  $GLOBALS['ilLog']->write(__METHOD__.': do import with dir '.$dir.DIRECTORY_SEPARATOR.$set['path'].' and type '.$set['type']);
56  $new_id = parent::doImportObject($dir.DIRECTORY_SEPARATOR.$set['path'],$set['type']);
57 
58  if($first)
59  {
60  $ret = $new_id;
61  $first = false;
62  }
63  }
64  return $ret;
65  }
createDummy($a_type)
Create dummy object.
$GLOBALS['ct_recipient']
Manifest parser for ILIAS standard export files.
+ Here is the call graph for this function:

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