mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
134744b5d6
[1613] Fixing Bake (Ticket #5) [1612] Adding new file header [1611] Starting to fix Bake (Ticket #5) [1610] Adding patch for Ticket #63 [1609] Fixing ticket #13 [1608] Fix so only sub classes that have a __destruct() implemented will have it registered [1607] Fixing ticket #130 [1606] Fix for Ticket #190 [1605] Fixing ticket #136 [1604] Fixed would throw error if a action was camelCased in the url or in requestAction() [1603] fixed a few typos in home view git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1614 3807eeeb-6ff5-0310-8944-8be069107fe0
48 lines
No EOL
1.2 KiB
PHP
48 lines
No EOL
1.2 KiB
PHP
#!/usr/local/bin/php
|
|
<?php
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
* Bake startup script
|
|
*
|
|
* Invokes the Bake class with given parameters.
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
* Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
* Las Vegas, Nevada 89104
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @copyright Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
* @package cake
|
|
* @subpackage cake.cake.scripts
|
|
* @since CakePHP v 0.2.9
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
*/
|
|
|
|
/**
|
|
* START-UP
|
|
*/
|
|
define ('DS', DIRECTORY_SEPARATOR);
|
|
define ('ROOT', dirname(dirname(dirname(__FILE__))).DS);
|
|
define ('APP_DIR', 'app');
|
|
|
|
require (ROOT.'cake'.DS.'config'.DS.'paths.php');
|
|
require (ROOT.'cake'.DS.'basics.php');
|
|
uses ('bake');
|
|
|
|
$waste = array_shift($argv);
|
|
$product = array_shift($argv);
|
|
|
|
$bake = new Bake ($product, $argv);
|
|
|
|
?>
|