1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-26 13:20:17 +02:00

Use default autoloader when composer autoloader has been not initialized

This commit is contained in:
Jakub Turek 2014-09-13 21:29:40 +02:00
parent 5809a424a7
commit bc428f466a

View File

@ -16,7 +16,14 @@ $baseDir = dirname(dirname(__FILE__));
define('MAGALLANES_VERSION', '1.0.1');
define('MAGALLANES_DIRECTORY', $baseDir);
require_once __DIR__ . '/../vendor/autoload.php';
if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
require_once __DIR__ . '/../vendor/autoload.php';
} else {
require_once $baseDir . '/Mage/Autoload.php';
$loader = new \Mage\Autoload();
spl_autoload_register(array($loader, 'autoLoad'));
}
// Clean arguments
array_shift($argv);