2010-10-16 05:15:22 +00:00
|
|
|
#!/usr/bin/php -q
|
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Command-line code generation utility to automate programmer chores.
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2012-03-13 02:46:07 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc.
|
2010-10-16 05:15:22 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2012-03-13 02:46:07 +00:00
|
|
|
* @copyright Copyright 2005-2012, 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
|
2010-10-16 05:15:22 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
2011-07-28 17:44:07 +00:00
|
|
|
$ds = DIRECTORY_SEPARATOR;
|
|
|
|
$dispatcher = 'Cake' . $ds . 'Console' . $ds . 'ShellDispatcher.php';
|
|
|
|
|
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__)));
|
|
|
|
ini_set('include_path', $root . $ds. 'lib' . PATH_SEPARATOR . ini_get('include_path'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!include($dispatcher)) {
|
|
|
|
trigger_error('Could not locate CakePHP core files.', E_USER_ERROR);
|
|
|
|
}
|
2012-02-26 17:03:22 +00:00
|
|
|
unset($paths, $path, $dispatcher, $root, $ds);
|
2010-10-16 05:15:22 +00:00
|
|
|
|
2010-10-18 02:43:06 +00:00
|
|
|
return ShellDispatcher::run($argv);
|