ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAccessControlExporter.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
26 {
27  public function init(): void
28  {
29  }
30 
38  public function getXmlExportHeadDependencies(string $a_entity, string $a_target_release, array $a_ids): array
39  {
40  return [];
41  }
42 
46  public function getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id): string
47  {
48  global $DIC;
49 
50  $writer = new ilRoleXmlExport();
51 
53  $eo->read();
54 
55  $rolf = $eo->getOptionByObjId((int) $a_id, ilExportOptions::KEY_ROOT);
56  $writer->setRoles(array((int) $a_id => (int) $rolf));
57  $writer->write();
58  return $writer->xmlDumpMem(false);
59  }
60 
66  public function getValidSchemaVersions(string $a_entity): array
67  {
68  return array(
69  "4.3.0" => array(
70  "namespace" => "http://www.ilias.de/AccessControl/Role/role/4_3",
71  "xsd_file" => "ilias_role_4_3.xsd",
72  "uses_dataset" => false,
73  "min" => "4.3.0",
74  "max" => ""
75  )
76  );
77  }
78 }
getValidSchemaVersions(string $a_entity)
Returns schema versions that the component can export to.
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)
Get xml.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
getXmlExportHeadDependencies(string $a_entity, string $a_target_release, array $a_ids)
Get head dependencies.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...