View file sdark.mobi/core/autoload.php
<?php /** * Регистрация автозагрузчика. */ spl_autoload_register(function($classname){ $path = strtr($classname, '\\', '/'); if (file_exists($path)) { require_once $path; } });
<?php /** * Регистрация автозагрузчика. */ spl_autoload_register(function($classname){ $path = strtr($classname, '\\', '/'); if (file_exists($path)) { require_once $path; } });