mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
390 B
18 lines
390 B
<?php |
|
date_default_timezone_set('UTC'); |
|
|
|
$baseDir = dirname(dirname(__FILE__)); |
|
|
|
define('MAGALLANES_VERSION', '0.9.14'); |
|
|
|
// Preload |
|
require_once $baseDir . '/Mage/spyc.php'; |
|
require_once $baseDir . '/Mage/Autoload.php'; |
|
spl_autoload_register(array('Mage_Autoload', 'autoload')); |
|
|
|
// Clean arguments |
|
array_shift($argv); |
|
|
|
// Run Magallanes |
|
$console = new Mage_Console; |
|
$console->run($argv);
|
|
|