ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
autoloader.php
Go to the documentation of this file.
1
<?php
2
3
spl_autoload_register(
function
($class) {
4
if
(strpos($class,
'Gettext\\'
) !== 0) {
5
return
;
6
}
7
8
$file
= __DIR__.str_replace(
'\\'
, DIRECTORY_SEPARATOR, substr($class, strlen(
'Gettext'
))).
'.php'
;
9
10
if
(is_file(
$file
)) {
11
require_once
$file
;
12
}
13
});
$file
if(!file_exists("$old.txt")) if($old===$new) if(file_exists("$new.txt")) $file
Definition:
rename-config.php:43
libs
composer
vendor
gettext
gettext
src
autoloader.php
Generated on Tue Jan 28 2025 19:01:05 for ILIAS by
1.8.13 (using
Doxyfile
)