ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFileImporter.php
Go to the documentation of this file.
1 <?php
26 {
27  protected ?ilObjFile $current_obj = null;
28 
33  public function importXmlRepresentation(
34  string $a_entity,
35  string $a_id,
36  string $a_xml,
37  ilImportMapping $a_mapping
38  ): void {
39  // case i container
40  if ($new_id = $a_mapping->getMapping('components/ILIAS/Container', 'objs', $a_id)) {
41  $newObj = ilObjectFactory::getInstanceByObjId($new_id, false);
42  $newObj->setVersion(
43  0
44  ); // If $version is 0 from database, it will be set to 1 in ilObFile::doRead(). In ilFileXMLParser::handlerBeginTag $version will being increased. So its incorrectly 2. Set $version to 0 like case ii, non container
45  } else { // case ii, non container
46  $newObj = new ilObjFile();
47  $newObj->setNoMetaDataCreation(true); // #16545
48  $newObj->create(true);
49  }
50 
51  $parser = new ilFileXMLParser($newObj, $a_xml);
52  $parser->setImportDirectory($this->getImportDirectory());
53  $parser->startParsing();
54 
55  $newObj->createProperties();
56 
57  $parser->setFileContents();
58  $this->current_obj = $newObj;
59 
60  $newObj->update(); // this is necessary for case ii (e.g. wiki import)
61 
62  $a_mapping->addMapping("components/ILIAS/File", "file", $a_id, $newObj->getId());
63  $a_mapping->addMapping(
64  "components/ILIAS/MetaData",
65  "md",
66  $a_id . ":0:file",
67  $newObj->getId() . ":0:file"
68  );
69  }
70 }
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)
Import XML.
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getMapping(string $a_comp, string $a_entity, string $a_old_id)
Class ilObjFile.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
Xml importer class.