29 '.*ilPDExternalFeedBlockGUI.*',
35 $this->
interface = $interface;
43 $composer_classmap = include
"./libs/composer/vendor/composer/autoload_classmap.php";
44 $root = substr(__FILE__, 0, strpos(__FILE__,
"/src"));
46 if (!is_array($composer_classmap)) {
47 throw new \LogicException(
"Composer ClassMap not loaded");
55 return "(" . str_replace(
'/',
'(/|\\\\)', $v) .
")";
61 foreach ($composer_classmap as $class_name => $file_path) {
62 $path = str_replace($root,
"", realpath($file_path));
63 if (!preg_match(
"#^" . $regexp .
"$#", $path)) {
74 $r = new \ReflectionClass($class_name);
75 if ($r->isInstantiable() && $r->implementsInterface($this->interface)) {
78 }
catch (\Throwable
$e) {
__construct(string $interface)