29 '.*ilPDExternalFeedBlockGUI.*',
39 $this->root = substr(__FILE__, 0, strpos(__FILE__,
"/src"));
40 $this->classmap = include
"./libs/composer/vendor/composer/autoload_classmap.php";
55 array $additional_ignore = [],
56 string $matching_path = null
58 foreach ($this->
getAllClassNames($additional_ignore, $matching_path) as $class_name) {
60 $r = new \ReflectionClass($class_name);
61 if ($r->isInstantiable() && $r->implementsInterface($interface)) {
75 $ignore = array_merge($this->ignore, $additional_ignore);
77 if (!is_array($this->classmap)) {
78 throw new \LogicException(
"Composer ClassMap not loaded");
86 return "(" . str_replace(
'/',
'(/|\\\\)', $v) .
")";
92 $matching_path = str_replace(
'/',
'(/|\\\\)', $matching_path);
96 foreach ($this->classmap as $class_name => $file_path) {
97 $path = str_replace($this->root,
"", realpath($file_path));
98 if ($matching_path && !preg_match(
"#^" . $matching_path .
"$#", $path)) {
101 if (!preg_match(
"#^" . $regexp .
"$#", $path)) {
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMatchingClassNames(string $interface, array $additional_ignore=[], string $matching_path=null)
The matcher finds the class names implementing the given interface, while ignoring paths in self::$ig...
getAllClassNames(array $additional_ignore, string $matching_path=null)