Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Mods-for-HESK-Netsyms/api/bootstrap.php

11 строки
278 B
PHP

<?php
spl_autoload_register(function ($class) {
// Uncomment for debugging
//echo 'Looking for class ' . $class . "\n";
$file = __DIR__ . DIRECTORY_SEPARATOR . str_replace('\\', '/', $class) . '.php';
if (file_exists($file)) {
require($file);
}
});