19 declare(strict_types=1);
29 public static function getExporterClass(
string $a_type): string
35 $objDefinition = $DIC[
'objDefinition'];
37 if ($objDefinition->isPlugin($a_type)) {
38 $classname =
'il' . $objDefinition->getClassName($a_type) .
'Exporter';
39 $location = $objDefinition->getLocation($a_type);
40 if (include_once
$location .
'/class.' . $classname .
'.php') {
44 $comp = $objDefinition->getComponentForType($a_type);
45 $componentParts = explode(
"/", $comp);
46 $class = array_pop($componentParts);
47 $class =
"il" . $class .
"Exporter";
51 if (class_exists($class)) {
59 if (include_once
"./" . $comp .
"/classes/class." . $class .
".php") {
67 public static function getComponentForExport(
string $a_type):
string 74 $objDefinition = $DIC[
'objDefinition'];
75 if ($objDefinition->isPlugin($a_type)) {
76 return self::PLUGINS_DIR .
"/" . $a_type;
78 return $objDefinition->getComponentForType($a_type);
88 public static function getImporterClass(
string $a_component):
string 90 # Compatibility with older exports 91 # Object changed to ILIASObject with the component revision 92 $a_component = ($a_component ===
"components/ILIAS/Object") ?
"components/ILIAS/ILIASObject" : $a_component;
93 $a_component = ($a_component ===
"Services/Object") ?
"components/ILIAS/ILIASObject" : $a_component;
98 $objDefinition = $DIC[
'objDefinition'];
100 $parts = explode(
'/', $a_component);
101 $component_type =
$parts[0];
104 if ($component_type == self::PLUGINS_DIR &&
105 $objDefinition->isPlugin($component)) {
106 $classname =
'il' . $objDefinition->getClassName($component) .
'Importer';
107 $location = $objDefinition->getLocation($component);
108 if (include_once
$location .
'/class.' . $classname .
'.php') {
112 $class =
"il" . $component .
"Importer";
118 if (class_exists($class)) {
124 elseif ($component_type == self::PLUGINS_DIR) {
128 if (is_file(
"./" . $a_component .
"/classes/class." . $class .
".php")) {
133 throw new InvalidArgumentException(
'Invalid importer type given: ' .
"./" . $a_component .
"/classes/class." . $class .
".php");
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts