2010-10-16 05:15:22 +00:00
|
|
|
#!/usr/bin/php -q
|
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Command-line code generation utility to automate programmer chores.
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 12:28:17 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-10-16 05:15:22 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-10-16 05:15:22 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-10-16 05:15:22 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-28 17:44:07 +00:00
|
|
|
* @package app.Console
|
|
|
|
* @since CakePHP(tm) v 2.0
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2010-10-16 05:15:22 +00:00
|
|
|
*/
|
2013-10-23 02:18:59 +00:00
|
|
|
|
2014-06-17 00:28:52 +00:00
|
|
|
if (!defined('DS')) {
|
|
|
|
define('DS', DIRECTORY_SEPARATOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
$dispatcher = 'Cake' . DS . 'Console' . DS . 'ShellDispatcher.php';
|
2011-07-28 17:44:07 +00:00
|
|
|
|
2012-02-26 17:03:22 +00:00
|
|
|
if (function_exists('ini_set')) {
|
2011-07-28 17:44:07 +00:00
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
2014-06-24 15:49:18 +00:00
|
|
|
$appDir = basename(dirname(dirname(__FILE__)));
|
|
|
|
$install = $root . DS . 'lib';
|
|
|
|
$composerInstall = $root . DS . $appDir . DS . 'Vendor' . DS . 'cakephp' . DS . 'cakephp' . DS . 'lib';
|
2013-02-08 13:41:57 +00:00
|
|
|
|
2014-06-24 15:49:18 +00:00
|
|
|
// the following lines differ from its sibling
|
2013-02-08 13:41:57 +00:00
|
|
|
// /lib/Cake/Console/Templates/skel/Console/cake.php
|
2014-06-24 15:49:18 +00:00
|
|
|
if (file_exists($composerInstall . DS . $dispatcher)) {
|
|
|
|
$install = $composerInstall;
|
|
|
|
}
|
|
|
|
|
|
|
|
ini_set('include_path', $install . PATH_SEPARATOR . ini_get('include_path'));
|
|
|
|
unset($root, $appDir, $install, $composerInstall);
|
2011-07-28 17:44:07 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 23:40:45 +00:00
|
|
|
if (!include $dispatcher) {
|
2011-07-28 17:44:07 +00:00
|
|
|
trigger_error('Could not locate CakePHP core files.', E_USER_ERROR);
|
|
|
|
}
|
2014-06-17 00:28:52 +00:00
|
|
|
unset($dispatcher);
|
2010-10-16 05:15:22 +00:00
|
|
|
|
2010-10-18 02:43:06 +00:00
|
|
|
return ShellDispatcher::run($argv);
|