3 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 94 $objDefinition = $DIC[
'objDefinition'];
96 $parts = explode(
'/', $a_component);
97 $component_type =
$parts[0];
100 if ($component_type == self::PLUGINS_DIR &&
101 $objDefinition->isPlugin($component)) {
102 $classname =
'il' . $objDefinition->getClassName($component) .
'Importer';
103 $location = $objDefinition->getLocation($component);
104 if (include_once
$location .
'/class.' . $classname .
'.php') {
108 $class =
"il" . $component .
"Importer";
114 if (class_exists($class)) {
120 elseif ($component_type == self::PLUGINS_DIR) {
124 if (is_file(
"./" . $a_component .
"/classes/class." . $class .
".php")) {
129 throw new InvalidArgumentException(
'Invalid importer type given: ' .
"./" . $a_component .
"/classes/class." . $class .
".php");
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
$location
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...