ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilImportContainer.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
26 {
27  public function __construct(int $a_target_id)
28  {
29  parent::__construct($a_target_id);
30  }
31 
32  protected function doImportObject(
33  string $dir,
34  string $a_type,
35  string $a_component = "",
36  string $a_tmpdir = ""
37  ): array {
38  $manifest_file = $dir . "/manifest.xml";
39  if (!file_exists($manifest_file)) {
40  return [];
41  }
42  $parser = new ilManifestParser($manifest_file);
43 
44  // Handling single containers without subitems
45  // @todo: check if this is required
46  // all container have container export sets
47  $all_importers = array();
48  if (!$parser->getExportSets()) {
49  $this->createDummy($a_type);
50  $import_info = parent::doImportObject($dir, $a_type);
51  $all_importers = array_merge($all_importers, $import_info['importers']);
52  return $import_info;
53  }
54 
55  // Handling containers with subitems
56  $first = true;
57  $ret = [];
58  foreach ($parser->getExportSets() as $set) {
59  $import_info = parent::doImportObject($dir . DIRECTORY_SEPARATOR . $set['path'], $set['type']);
60  $all_importers = array_merge($all_importers, $import_info['importers']);
61  if ($first) {
62  $ret = $import_info;
63  $first = false;
64  }
65  }
66  // after container import is finished, call all importers to perform a final processing
67  foreach ($all_importers as $importer) {
68  $importer->afterContainerImportProcessing($this->getMapping());
69  }
70  return $ret;
71  }
72 
73  protected function createDummy(string $a_type): ilObject
74  {
75  $class_name = "ilObj" . $this->objDefinition->getClassName($a_type);
76 
77  $new = new $class_name();
78  $new->setTitle('Import');
79  $new->create(true);
80  $new->createReference();
81  $new->putInTree($this->getMapping()->getTargetId());
82  $new->setPermissions($this->getMapping()->getTargetId());
83 
84  $this->getMapping()->addMapping('Services/Container', 'objs', '0', (string) $new->getId());
85  $this->getMapping()->addMapping('Services/Container', 'refs', '0', (string) $new->getRefId());
86 
87  return $new;
88  }
89 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
doImportObject(string $dir, string $a_type, string $a_component="", string $a_tmpdir="")
ilXmlImporter $importer
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Manifest parser for ILIAS standard export files.
__construct(int $a_target_id)
__construct(Container $dic, ilPlugin $plugin)