getFilename()) === Tools::strtolower($filename) && $file->isReadable()) { include_once $file->getPathname(); } } } /** * Sets the $fileExt property * * @param string $fileExt The file extension used for class files. Default is "php". */ public static function setFileExt($fileExt) { self::$fileExt = $fileExt; } /** * Sets the $path property * * @param string $path The path representing the top level where recursion should * begin. Defaults to the current directory. */ public static function setPath($path) { self::$pathTop = $path; } } RetailcrmAutoloader::setPath(realpath(dirname(__FILE__))); RetailcrmAutoloader::setFileExt('.php'); spl_autoload_register('RetailcrmAutoloader::loader');