ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
autoloader.php
Go to the documentation of this file.
1
<?
php
2
spl_autoload_register(
3
function
($class) {
4
if
(strpos($class,
'Gettext\\Languages\\'
) !== 0) {
5
return
;
6
}
7
$file = __DIR__.str_replace(
'\\'
, DIRECTORY_SEPARATOR, substr($class, strlen(
'Gettext\\Languages'
))).
'.php'
;
8
if
(is_file($file)) {
9
require_once $file;
10
}
11
}
12
);
php
libs
composer
vendor
gettext
languages
src
autoloader.php
Generated on Thu Jan 16 2025 19:01:40 for ILIAS by
1.8.13 (using
Doxyfile
)