ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAccessControlImporter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
26 {
27  public function init(): void
28  {
29  }
30 
35  public function importXmlRepresentation(
36  string $a_entity,
37  string $a_id,
38  string $a_xml,
39  ilImportMapping $a_mapping
40  ): void {
41  $role_folder_id = $a_mapping->getMapping('components/ILIAS/AccessControl', 'rolf', (string) 0);
42 
43  $importer = new ilRoleXmlImporter((int) $role_folder_id);
44  $importer->setXml($a_xml);
45  $importer->setRole(new ilObjRole());
46  $importer->import();
47  }
48 }
Class ilObjRole.
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)
Import XML.
role role template xml importer
getMapping(string $a_comp, string $a_entity, string $a_old_id)
Description of class.
Xml importer class.