2006-02-25 04:42:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-05-01 17:03:30 +00:00
|
|
|
* This file is loaded automatically by the app/webroot/index.php file after the core bootstrap.php
|
2006-02-25 04:42:31 +00:00
|
|
|
*
|
2009-05-01 17:03:30 +00:00
|
|
|
* This is an application wide file to load any function that is not used within a class
|
|
|
|
* define. You can also use this to include or require any files in your application.
|
2006-02-25 04:42:31 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2009-05-01 17:03:30 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2006-02-25 04:42:31 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2009-05-01 17:03:30 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.app.config
|
|
|
|
* @since CakePHP(tm) v 0.10.8.2117
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2006-02-25 04:42:31 +00:00
|
|
|
*/
|
|
|
|
/**
|
2009-05-01 17:03:30 +00:00
|
|
|
* The settings below can be used to set additional paths to models, views and controllers.
|
|
|
|
* This is related to Ticket #470 (https://trac.cakephp.org/ticket/470)
|
2006-02-25 04:42:31 +00:00
|
|
|
*
|
2009-05-01 17:03:30 +00:00
|
|
|
* $modelPaths = array('/full/path/to/models/', '/next/full/path/to/models/');
|
|
|
|
* $viewPaths = array('/full/path/to/views/', '/next/full/path/to/views/');
|
|
|
|
* $controllerPaths = array(/full/path/to/controllers/', '/next/full/path/to/controllers/');
|
|
|
|
* $pluginPaths = array('/full/path/to/plugins/', '/next/full/path/to/plugins/');
|
|
|
|
* $behaviorPaths = array('/full/path/to/behaviors/', '/next/full/path/to/behaviors/');
|
|
|
|
* $componentPaths = array('/full/path/to/components/', '/next/full/path/to/components/');
|
|
|
|
* $helperPaths = array('/full/path/to/helpers/', '/next/full/path/to/helpers/');
|
|
|
|
* $vendorPaths = array('/full/path/to/vendors/', '/next/full/path/to/vendors/');
|
|
|
|
* $shellPaths = array('/full/path/to/shells/', '/next/full/path/to/shells/');
|
|
|
|
* $localePaths = array('/full/path/to/locale/', '/next/full/path/to/locale/';
|
2006-02-25 04:42:31 +00:00
|
|
|
*
|
|
|
|
*/
|
2006-03-19 03:26:43 +00:00
|
|
|
/**
|
2009-05-01 17:03:30 +00:00
|
|
|
* As of 1.3, additional rules for the inflector are added below
|
2006-03-19 03:26:43 +00:00
|
|
|
*
|
2009-05-01 17:03:30 +00:00
|
|
|
* Inflector::rule('singular', array('rules' => array(), irregular' => array(), 'uninflected' => array()));
|
|
|
|
* Inflector::rule('plural', array('rules' => array(), 'irregular' => array(), 'uninflected' => array()));
|
2006-03-19 03:26:43 +00:00
|
|
|
*
|
|
|
|
*/
|
2009-03-18 05:54:27 +00:00
|
|
|
?>
|