Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/mlocati/concrete5-translation-library/src/autoloader.php
Строк: 6
<?php

spl_autoload_register
(
    function (
$class) {
        if (
strpos($class'C5TL\') !== 0) {
            return;
        }
        $file = __DIR__.str_replace('
\', DIRECTORY_SEPARATOR, substr($class, strlen('C5TL'))).'.php';
        if (is_file($file)) {
            require_once $file;
        }
    }
);
Онлайн: 0
Реклама