mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Updating all @package annotations in doc blocks
This commit is contained in:
parent
21ff9caac7
commit
cfd2d9e00b
547 changed files with 1294 additions and 1294 deletions
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs
|
* @package Cake.Cache
|
||||||
* @since CakePHP(tm) v 1.2.0.4933
|
* @since CakePHP(tm) v 1.2.0.4933
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -41,7 +41,7 @@ App::uses('Inflector', 'Utility');
|
||||||
* general all Cache operations are supported by all cache engines. However, Cache::increment() and
|
* general all Cache operations are supported by all cache engines. However, Cache::increment() and
|
||||||
* Cache::decrement() are not supported by File caching.
|
* Cache::decrement() are not supported by File caching.
|
||||||
*
|
*
|
||||||
* @package cake.libs
|
* @package Cake.Cache
|
||||||
*/
|
*/
|
||||||
class Cache {
|
class Cache {
|
||||||
|
|
||||||
|
@ -484,7 +484,7 @@ class Cache {
|
||||||
/**
|
/**
|
||||||
* Storage engine for CakePHP caching
|
* Storage engine for CakePHP caching
|
||||||
*
|
*
|
||||||
* @package cake.libs
|
* @package Cake.Cache
|
||||||
*/
|
*/
|
||||||
abstract class CacheEngine {
|
abstract class CacheEngine {
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.cache
|
* @package Cake.Cache.Engine
|
||||||
* @since CakePHP(tm) v 1.2.0.4933
|
* @since CakePHP(tm) v 1.2.0.4933
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
/**
|
/**
|
||||||
* APC storage engine for cache
|
* APC storage engine for cache
|
||||||
*
|
*
|
||||||
* @package cake.libs.cache
|
* @package Cake.Cache.Engine
|
||||||
*/
|
*/
|
||||||
class ApcEngine extends CacheEngine {
|
class ApcEngine extends CacheEngine {
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
/**
|
/**
|
||||||
* File Storage engine for cache
|
* File Storage engine for cache
|
||||||
*
|
*
|
||||||
* @package cake.libs.cache
|
* @package Cake.Cache.Engine
|
||||||
*/
|
*/
|
||||||
class FileEngine extends CacheEngine {
|
class FileEngine extends CacheEngine {
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.cache
|
* @package Cake.Cache.Engine
|
||||||
* @since CakePHP(tm) v 1.2.0.4933
|
* @since CakePHP(tm) v 1.2.0.4933
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
* control you have over expire times far in the future. See MemcacheEngine::write() for
|
* control you have over expire times far in the future. See MemcacheEngine::write() for
|
||||||
* more information.
|
* more information.
|
||||||
*
|
*
|
||||||
* @package cake.libs.cache
|
* @package Cake.Cache.Engine
|
||||||
*/
|
*/
|
||||||
class MemcacheEngine extends CacheEngine {
|
class MemcacheEngine extends CacheEngine {
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.cache
|
* @package Cake.Cache.Engine
|
||||||
* @since CakePHP(tm) v 1.2.0.4933
|
* @since CakePHP(tm) v 1.2.0.4933
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
/**
|
/**
|
||||||
* Wincache storage engine for cache
|
* Wincache storage engine for cache
|
||||||
*
|
*
|
||||||
* @package cake.libs.cache
|
* @package Cake.Cache.Engine
|
||||||
*/
|
*/
|
||||||
class WincacheEngine extends CacheEngine {
|
class WincacheEngine extends CacheEngine {
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.cache
|
* @package Cake.Cache.Engine
|
||||||
* @since CakePHP(tm) v 1.2.0.4947
|
* @since CakePHP(tm) v 1.2.0.4947
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
* Xcache storage engine for cache
|
* Xcache storage engine for cache
|
||||||
*
|
*
|
||||||
* @link http://trac.lighttpd.net/xcache/ Xcache
|
* @link http://trac.lighttpd.net/xcache/ Xcache
|
||||||
* @package cake.libs.cache
|
* @package Cake.Cache.Engine
|
||||||
*/
|
*/
|
||||||
class XcacheEngine extends CacheEngine {
|
class XcacheEngine extends CacheEngine {
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config
|
* @package Cake.Config
|
||||||
* @since CakePHP(tm) v 1.1.11.4062
|
* @since CakePHP(tm) v 1.1.11.4062
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config
|
* @package Cake.Config
|
||||||
* @since CakePHP(tm) v 2.0
|
* @since CakePHP(tm) v 2.0
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.6833
|
* @since CakePHP(tm) v 1.2.0.6833
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.config.unicode.casefolding
|
* @package Cake.Config.unicode.casefolding
|
||||||
* @since CakePHP(tm) v 1.2.0.5691
|
* @since CakePHP(tm) v 1.2.0.5691
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.config
|
* @package Cake.Configure
|
||||||
* @since CakePHP(tm) v 2.0
|
* @since CakePHP(tm) v 2.0
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
* 'yes', 'no', 'on', 'off', 'null' are handled. These values will be
|
* 'yes', 'no', 'on', 'off', 'null' are handled. These values will be
|
||||||
* converted to their boolean equivalents.
|
* converted to their boolean equivalents.
|
||||||
*
|
*
|
||||||
* @package cake.config
|
* @package Cake.Configure
|
||||||
* @see http://php.net/parse_ini_file
|
* @see http://php.net/parse_ini_file
|
||||||
*/
|
*/
|
||||||
class IniReader implements ConfigReaderInterface {
|
class IniReader implements ConfigReaderInterface {
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
|
* @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
|
||||||
* @package cake.libs.config
|
* @package Cake.Configure
|
||||||
* @since CakePHP(tm) v 2.0
|
* @since CakePHP(tm) v 2.0
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
* Files compatible with PhpReader should define a `$config` variable, that
|
* Files compatible with PhpReader should define a `$config` variable, that
|
||||||
* contains all of the configuration data contained in the file.
|
* contains all of the configuration data contained in the file.
|
||||||
*
|
*
|
||||||
* @package cake.libs.config
|
* @package Cake.Configure
|
||||||
*/
|
*/
|
||||||
class PhpReader implements ConfigReaderInterface {
|
class PhpReader implements ConfigReaderInterface {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
* Add your application-wide methods in the class below, your shells
|
* Add your application-wide methods in the class below, your shells
|
||||||
* will inherit them.
|
* will inherit them.
|
||||||
*
|
*
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class AppShell extends Shell {
|
class AppShell extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ App::uses('DbAcl', 'Model');
|
||||||
* Shell for ACL management. This console is known to have issues with zend.ze1_compatibility_mode
|
* Shell for ACL management. This console is known to have issues with zend.ze1_compatibility_mode
|
||||||
* being enabled. Be sure to turn it off when using this shell.
|
* being enabled. Be sure to turn it off when using this shell.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command
|
* @package Cake.Console.Command
|
||||||
*/
|
*/
|
||||||
class AclShell extends Shell {
|
class AclShell extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ App::uses('File', 'Utility');
|
||||||
/**
|
/**
|
||||||
* API shell to show method signatures of CakePHP core classes.
|
* API shell to show method signatures of CakePHP core classes.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command
|
* @package Cake.Console.Command
|
||||||
*/
|
*/
|
||||||
class ApiShell extends Shell {
|
class ApiShell extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ App::uses('Model', 'Model');
|
||||||
/**
|
/**
|
||||||
* Bake is a command-line code generation utility for automating programmer chores.
|
* Bake is a command-line code generation utility for automating programmer chores.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command
|
* @package Cake.Console.Command
|
||||||
* @link http://book.cakephp.org/view/1522/Code-Generation-with-Bake
|
* @link http://book.cakephp.org/view/1522/Code-Generation-with-Bake
|
||||||
*/
|
*/
|
||||||
class BakeShell extends Shell {
|
class BakeShell extends Shell {
|
||||||
|
|
|
@ -21,7 +21,7 @@ App::uses('Inflector', 'Utility');
|
||||||
/**
|
/**
|
||||||
* Shows a list of commands available from the console.
|
* Shows a list of commands available from the console.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command
|
* @package Cake.Console.Command
|
||||||
*/
|
*/
|
||||||
class CommandListShell extends Shell {
|
class CommandListShell extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
/**
|
/**
|
||||||
* Provides a very basic 'interactive' console for CakePHP apps.
|
* Provides a very basic 'interactive' console for CakePHP apps.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command
|
* @package Cake.Console.Command
|
||||||
*/
|
*/
|
||||||
class ConsoleShell extends Shell {
|
class ConsoleShell extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
/**
|
/**
|
||||||
* Shell for I18N management.
|
* Shell for I18N management.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command
|
* @package Cake.Console.Command
|
||||||
*/
|
*/
|
||||||
class I18nShell extends Shell {
|
class I18nShell extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ App::uses('CakeSchema', 'Model');
|
||||||
/**
|
/**
|
||||||
* Schema is a command-line database management utility for automating programmer chores.
|
* Schema is a command-line database management utility for automating programmer chores.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command
|
* @package Cake.Console.Command
|
||||||
* @link http://book.cakephp.org/view/1523/Schema-management-and-migrations
|
* @link http://book.cakephp.org/view/1523/Schema-management-and-migrations
|
||||||
*/
|
*/
|
||||||
class SchemaShell extends Shell {
|
class SchemaShell extends Shell {
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
/**
|
/**
|
||||||
* Base class for Bake Tasks.
|
* Base class for Bake Tasks.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class BakeTask extends Shell {
|
class BakeTask extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ App::uses('AppModel', 'Model');
|
||||||
/**
|
/**
|
||||||
* Task class for creating and updating controller files.
|
* Task class for creating and updating controller files.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class ControllerTask extends BakeTask {
|
class ControllerTask extends BakeTask {
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
/**
|
/**
|
||||||
* Task class for creating and updating the database configuration file.
|
* Task class for creating and updating the database configuration file.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class DbConfigTask extends Shell {
|
class DbConfigTask extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ App::uses('Folder', 'Utility');
|
||||||
/**
|
/**
|
||||||
* Language string extractor
|
* Language string extractor
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class ExtractTask extends Shell {
|
class ExtractTask extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ App::uses('Model', 'Model');
|
||||||
/**
|
/**
|
||||||
* Task class for creating and updating fixtures files.
|
* Task class for creating and updating fixtures files.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class FixtureTask extends BakeTask {
|
class FixtureTask extends BakeTask {
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ App::uses('Validation', 'Utility');
|
||||||
/**
|
/**
|
||||||
* Task class for creating and updating model files.
|
* Task class for creating and updating model files.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class ModelTask extends BakeTask {
|
class ModelTask extends BakeTask {
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ App::uses('Folder', 'Utility');
|
||||||
/**
|
/**
|
||||||
* Task class for creating a plugin
|
* Task class for creating a plugin
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class PluginTask extends Shell {
|
class PluginTask extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ App::uses('Security', 'Utility');
|
||||||
/**
|
/**
|
||||||
* Task class for creating new project apps and plugins
|
* Task class for creating new project apps and plugins
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class ProjectTask extends Shell {
|
class ProjectTask extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ App::uses('Folder', 'Utility');
|
||||||
* Template Task can generate templated output Used in other Tasks.
|
* Template Task can generate templated output Used in other Tasks.
|
||||||
* Acts like a simplified View class.
|
* Acts like a simplified View class.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class TemplateTask extends Shell {
|
class TemplateTask extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ App::uses('ClassRegistry', 'Utility');
|
||||||
/**
|
/**
|
||||||
* Task class for creating and updating test files.
|
* Task class for creating and updating test files.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class TestTask extends BakeTask {
|
class TestTask extends BakeTask {
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ App::uses('BakeTask', 'Console/Command/Task');
|
||||||
/**
|
/**
|
||||||
* Task class for creating and updating view files.
|
* Task class for creating and updating view files.
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command.Task
|
* @package Cake.Console.Command.Task
|
||||||
*/
|
*/
|
||||||
class ViewTask extends BakeTask {
|
class ViewTask extends BakeTask {
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ App::uses('CakeTestLoader', 'TestSuite');
|
||||||
* Provides a CakePHP wrapper around PHPUnit.
|
* Provides a CakePHP wrapper around PHPUnit.
|
||||||
* Adds in CakePHP's fixtures and gives access to plugin, app and core test cases
|
* Adds in CakePHP's fixtures and gives access to plugin, app and core test cases
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command
|
* @package Cake.Console.Command
|
||||||
*/
|
*/
|
||||||
class TestsuiteShell extends Shell {
|
class TestsuiteShell extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ App::uses('Folder', 'Utility');
|
||||||
/**
|
/**
|
||||||
* A shell class to help developers upgrade applications to CakePHP 2.0
|
* A shell class to help developers upgrade applications to CakePHP 2.0
|
||||||
*
|
*
|
||||||
* @package Cake.Console.Command
|
* @package Cake.Console.Command
|
||||||
*/
|
*/
|
||||||
class UpgradeShell extends Shell {
|
class UpgradeShell extends Shell {
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ App::uses('CakeLog', 'Log');
|
||||||
* Error Handler for Cake console. Does simple printing of the
|
* Error Handler for Cake console. Does simple printing of the
|
||||||
* exception that occurred and the stack trace of the error.
|
* exception that occurred and the stack trace of the error.
|
||||||
*
|
*
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class ConsoleErrorHandler extends ErrorHandler {
|
class ConsoleErrorHandler extends ErrorHandler {
|
||||||
|
|
||||||
|
|
|
@ -12,14 +12,14 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.console.libs
|
* @package Cake.Console
|
||||||
* @since CakePHP(tm) v 2.0
|
* @since CakePHP(tm) v 2.0
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* Object wrapper for interacting with stdin
|
* Object wrapper for interacting with stdin
|
||||||
*
|
*
|
||||||
* @package cake.console.libs
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class ConsoleInput {
|
class ConsoleInput {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* ConsoleOptionParser creates these when you use addArgument()
|
* ConsoleOptionParser creates these when you use addArgument()
|
||||||
*
|
*
|
||||||
* @see ConsoleOptionParser::addArgument()
|
* @see ConsoleOptionParser::addArgument()
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class ConsoleInputArgument {
|
class ConsoleInputArgument {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* ConsoleOptionParser creates these when you use addOption()
|
* ConsoleOptionParser creates these when you use addOption()
|
||||||
*
|
*
|
||||||
* @see ConsoleOptionParser::addOption()
|
* @see ConsoleOptionParser::addOption()
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class ConsoleInputOption {
|
class ConsoleInputOption {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Created when you call ConsoleOptionParser::addSubcommand()
|
* Created when you call ConsoleOptionParser::addSubcommand()
|
||||||
*
|
*
|
||||||
* @see ConsoleOptionParser::addSubcommand()
|
* @see ConsoleOptionParser::addSubcommand()
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class ConsoleInputSubcommand {
|
class ConsoleInputSubcommand {
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@ App::uses('HelpFormatter', 'Console');
|
||||||
* By providing help text for your positional arguments and named arguments, the ConsoleOptionParser
|
* By providing help text for your positional arguments and named arguments, the ConsoleOptionParser
|
||||||
* can generate a help display for you. You can view the help for shells by using the `--help` or `-h` switch.
|
* can generate a help display for you. You can view the help for shells by using the `--help` or `-h` switch.
|
||||||
*
|
*
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class ConsoleOptionParser {
|
class ConsoleOptionParser {
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
* See ConsoleOutput::styles() to learn more about defining your own styles. Nested styles are not supported
|
* See ConsoleOutput::styles() to learn more about defining your own styles. Nested styles are not supported
|
||||||
* at this time.
|
* at this time.
|
||||||
*
|
*
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class ConsoleOutput {
|
class ConsoleOutput {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -25,7 +25,7 @@ App::uses('String', 'Utility');
|
||||||
*
|
*
|
||||||
* Xml output is useful for integration with other tools like IDE's or other build tools.
|
* Xml output is useful for integration with other tools like IDE's or other build tools.
|
||||||
*
|
*
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
* @since CakePHP(tm) v 2.0
|
* @since CakePHP(tm) v 2.0
|
||||||
*/
|
*/
|
||||||
class HelpFormatter {
|
class HelpFormatter {
|
||||||
|
|
|
@ -26,7 +26,7 @@ App::uses('File', 'Utility');
|
||||||
/**
|
/**
|
||||||
* Base class for command-line utilities for automating programmer chores.
|
* Base class for command-line utilities for automating programmer chores.
|
||||||
*
|
*
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class Shell extends Object {
|
class Shell extends Object {
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
/**
|
/**
|
||||||
* Shell dispatcher handles dispatching cli commands.
|
* Shell dispatcher handles dispatching cli commands.
|
||||||
*
|
*
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class ShellDispatcher {
|
class ShellDispatcher {
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ App::uses('ObjectCollection', 'Utility');
|
||||||
* Collection object for Tasks. Provides features
|
* Collection object for Tasks. Provides features
|
||||||
* for lazily loading tasks, and firing callbacks on loaded tasks.
|
* for lazily loading tasks, and firing callbacks on loaded tasks.
|
||||||
*
|
*
|
||||||
* @package Cake.Console
|
* @package Cake.Console
|
||||||
*/
|
*/
|
||||||
class TaskCollection extends ObjectCollection {
|
class TaskCollection extends ObjectCollection {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.
|
* @package Cake.Console.Templates.default.actions
|
||||||
* @since CakePHP(tm) v 1.3
|
* @since CakePHP(tm) v 1.3
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.
|
* @package Cake.Console.Templates.default.actions
|
||||||
* @since CakePHP(tm) v 1.3
|
* @since CakePHP(tm) v 1.3
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.console.libs.templates.objects
|
* @package Cake.Console.Templates.default.actions
|
||||||
* @since CakePHP(tm) v 1.3
|
* @since CakePHP(tm) v 1.3
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.console.libs.templates.objects
|
* @package Cake.Console.Templates.default.actions
|
||||||
* @since CakePHP(tm) v 1.3
|
* @since CakePHP(tm) v 1.3
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app.config.sql
|
* @package app.Config
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app.config.sql
|
* @package app.Config
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app.config.sql
|
* @package app.Config
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
; *
|
; *
|
||||||
; * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
; * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
; * @link http://cakephp.org CakePHP(tm) Project
|
; * @link http://cakephp.org CakePHP(tm) Project
|
||||||
; * @package app.config
|
; * @package Cake.Console.Templates.skel.Config
|
||||||
; * @since CakePHP(tm) v 0.10.0.1076
|
; * @since CakePHP(tm) v 0.10.0.1076
|
||||||
; * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
; * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
; */
|
; */
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app.config
|
* @package app.Config
|
||||||
* @since CakePHP(tm) v 0.10.8.2117
|
* @since CakePHP(tm) v 0.10.8.2117
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app.config
|
* @package app.Config
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app.config
|
* @package app.Config
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app.config
|
* @package app.Config
|
||||||
* @since CakePHP(tm) v 2.0.0
|
* @since CakePHP(tm) v 2.0.0
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app.config
|
* @package app.Config
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#
|
#
|
||||||
# @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
|
# @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
|
||||||
# @link http://cakephp.org CakePHP(tm) Project
|
# @link http://cakephp.org CakePHP(tm) Project
|
||||||
# @package app.console
|
# @package app.Console
|
||||||
# @since CakePHP(tm) v 2.0
|
# @since CakePHP(tm) v 2.0
|
||||||
# @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
# @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
#
|
#
|
||||||
|
|
|
@ -10,10 +10,10 @@
|
||||||
:: Redistributions of files must retain the above copyright notice.
|
:: Redistributions of files must retain the above copyright notice.
|
||||||
::
|
::
|
||||||
:: @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
|
:: @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
|
||||||
:: @link http://cakephp.org CakePHP(tm) Project
|
:: @link http://cakephp.org CakePHP(tm) Project
|
||||||
:: @package app.console
|
:: @package app.Console
|
||||||
:: @since CakePHP(tm) v 2.0
|
:: @since CakePHP(tm) v 2.0
|
||||||
:: @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
:: @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
::
|
::
|
||||||
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app.console
|
* @package app.Console
|
||||||
* @since CakePHP(tm) v 1.2.0.5012
|
* @since CakePHP(tm) v 1.2.0.5012
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app
|
* @package app.Controller
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -28,7 +28,7 @@ App::uses('Controller', 'Controller');
|
||||||
* Add your application-wide methods in the class below, your controllers
|
* Add your application-wide methods in the class below, your controllers
|
||||||
* will inherit them.
|
* will inherit them.
|
||||||
*
|
*
|
||||||
* @package app
|
* @package Cake.Console.Templates.skel.Controller
|
||||||
*/
|
*/
|
||||||
class AppController extends Controller {
|
class AppController extends Controller {
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.controller
|
* @package Cake.Console.Templates.skel.Controller
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
*
|
*
|
||||||
* Override this controller by placing a copy in controllers directory of an application
|
* Override this controller by placing a copy in controllers directory of an application
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller
|
* @package Cake.Console.Templates.skel.Controller
|
||||||
*/
|
*/
|
||||||
class PagesController extends AppController {
|
class PagesController extends AppController {
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package app
|
* @package app.Model
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -28,7 +28,7 @@ App::uses('Model', 'Model');
|
||||||
* Add your application-wide methods in the class below, your models
|
* Add your application-wide methods in the class below, your models
|
||||||
* will inherit them.
|
* will inherit them.
|
||||||
*
|
*
|
||||||
* @package app
|
* @package Cake.Console.Templates.skel.Model
|
||||||
*/
|
*/
|
||||||
class AppModel extends Model {
|
class AppModel extends Model {
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ App::uses('Helper', 'View');
|
||||||
* Add your application-wide methods in the class below, your helpers
|
* Add your application-wide methods in the class below, your helpers
|
||||||
* will inherit them.
|
* will inherit them.
|
||||||
*
|
*
|
||||||
* @package cake.libs.view.helpers
|
* @package Cake.Console.Templates.skel.View.Helper
|
||||||
*/
|
*/
|
||||||
class AppHelper extends Helper {
|
class AppHelper extends Helper {
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.view.templates.layouts.email.html
|
* @package app.View.Layouts.Email.html
|
||||||
* @since CakePHP(tm) v 0.10.0.1076
|
* @since CakePHP(tm) v 0.10.0.1076
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.view.templates.layouts.email.text
|
* @package app.View.Layouts.Email.text
|
||||||
* @since CakePHP(tm) v 0.10.0.1076
|
* @since CakePHP(tm) v 0.10.0.1076
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.console.libs.templates.skel.views.layouts
|
* @package app.View.Layouts
|
||||||
* @since CakePHP(tm) v 0.10.0.1076
|
* @since CakePHP(tm) v 0.10.0.1076
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.view.templates.layouts
|
* @package app.View.Layouts
|
||||||
* @since CakePHP(tm) v 0.10.0.1076
|
* @since CakePHP(tm) v 0.10.0.1076
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.console
|
* @package Cake.Console
|
||||||
* @since CakePHP(tm) v 1.2.0.5012
|
* @since CakePHP(tm) v 1.2.0.5012
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.controller
|
* @package Cake.Controller
|
||||||
* @since CakePHP(tm) v 0.2.9
|
* @since CakePHP(tm) v 0.2.9
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -29,7 +29,7 @@ App::uses('Controller', 'Controller');
|
||||||
* Add your application-wide methods in the class below, your controllers
|
* Add your application-wide methods in the class below, your controllers
|
||||||
* will inherit them.
|
* will inherit them.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller
|
* @package Cake.Controller
|
||||||
* @link http://book.cakephp.org/view/957/The-App-Controller
|
* @link http://book.cakephp.org/view/957/The-App-Controller
|
||||||
*/
|
*/
|
||||||
class AppController extends Controller {
|
class AppController extends Controller {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* Controller used by ErrorHandler to render error views.
|
* Controller used by ErrorHandler to render error views.
|
||||||
*
|
*
|
||||||
* @package cake.libs
|
* @package Cake.Controller
|
||||||
*/
|
*/
|
||||||
class CakeErrorController extends AppController {
|
class CakeErrorController extends AppController {
|
||||||
public $name = 'CakeError';
|
public $name = 'CakeError';
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.controller
|
* @package Cake.Controller
|
||||||
* @since CakePHP(tm) v 1.2
|
* @since CakePHP(tm) v 1.2
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -34,7 +34,7 @@ App::uses('ComponentCollection', 'Controller');
|
||||||
* but before Controller::afterFilter().
|
* but before Controller::afterFilter().
|
||||||
* - `beforeRedirect()` - Fired before a redirect() is done.
|
* - `beforeRedirect()` - Fired before a redirect() is done.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller
|
* @package Cake.Controller
|
||||||
* @link http://book.cakephp.org/view/993/Components
|
* @link http://book.cakephp.org/view/993/Components
|
||||||
* @see Controller::$components
|
* @see Controller::$components
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
* @since CakePHP(tm) v 0.10.0.1076
|
* @since CakePHP(tm) v 0.10.0.1076
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -28,7 +28,7 @@ App::uses('Component', 'Controller');
|
||||||
* You can define by changing `Configure::write('Acl.classname', 'DbAcl');` in your core.php. Concrete ACL
|
* You can define by changing `Configure::write('Acl.classname', 'DbAcl');` in your core.php. Concrete ACL
|
||||||
* implementations should extend `AclBase` and implement the methods it defines.
|
* implementations should extend `AclBase` and implement the methods it defines.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
* @link http://book.cakephp.org/view/1242/Access-Control-Lists
|
* @link http://book.cakephp.org/view/1242/Access-Control-Lists
|
||||||
*/
|
*/
|
||||||
class AclComponent extends Component {
|
class AclComponent extends Component {
|
||||||
|
@ -186,7 +186,7 @@ class AclComponent extends Component {
|
||||||
* Access Control List interface.
|
* Access Control List interface.
|
||||||
* Implementing classes are used by AclComponent to perform ACL checks in Cake.
|
* Implementing classes are used by AclComponent to perform ACL checks in Cake.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
*/
|
*/
|
||||||
interface AclInterface {
|
interface AclInterface {
|
||||||
|
|
||||||
|
@ -254,7 +254,7 @@ interface AclInterface {
|
||||||
* edit
|
* edit
|
||||||
* }}}
|
* }}}
|
||||||
*
|
*
|
||||||
* @package cake.libs.model
|
* @package Cake.Controller.Component
|
||||||
*/
|
*/
|
||||||
class DbAcl extends Object implements AclInterface {
|
class DbAcl extends Object implements AclInterface {
|
||||||
|
|
||||||
|
@ -518,7 +518,7 @@ class DbAcl extends Object implements AclInterface {
|
||||||
* IniAcl implements an access control system using an INI file. An example
|
* IniAcl implements an access control system using an INI file. An example
|
||||||
* of the ini file used can be found in /config/acl.ini.php.
|
* of the ini file used can be found in /config/acl.ini.php.
|
||||||
*
|
*
|
||||||
* @package cake.libs.model.iniacl
|
* @package Cake.Controller.Component
|
||||||
*/
|
*/
|
||||||
class IniAcl extends Object implements AclInterface {
|
class IniAcl extends Object implements AclInterface {
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ App::uses('BaseAuthorize', 'Controller/Component/Auth');
|
||||||
* An authorization adapter for AuthComponent. Provides the ability to authorize using the AclComponent,
|
* An authorization adapter for AuthComponent. Provides the ability to authorize using the AclComponent,
|
||||||
* If AclComponent is not already loaded it will be loaded using the Controller's ComponentCollection.
|
* If AclComponent is not already loaded it will be loaded using the Controller's ComponentCollection.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components.auth
|
* @package Cake.Controller.Component.Auth
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @see AuthComponent::$authenticate
|
* @see AuthComponent::$authenticate
|
||||||
* @see AclComponent::check()
|
* @see AclComponent::check()
|
||||||
|
|
|
@ -18,7 +18,7 @@ App::uses('Security', 'Utility');
|
||||||
/**
|
/**
|
||||||
* Base Authentication class with common methods and properties.
|
* Base Authentication class with common methods and properties.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components.auth
|
* @package Cake.Controller.Component.Auth
|
||||||
*/
|
*/
|
||||||
abstract class BaseAuthenticate {
|
abstract class BaseAuthenticate {
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
/**
|
/**
|
||||||
* Abstract base authorization adapter for AuthComponent.
|
* Abstract base authorization adapter for AuthComponent.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components.auth
|
* @package Cake.Controller.Component.Auth
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @see AuthComponent::$authenticate
|
* @see AuthComponent::$authenticate
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -37,7 +37,7 @@ App::uses('BaseAuthenticate', 'Controller/Component/Auth');
|
||||||
* In your login function just call `$this->Auth->login()` without any checks for POST data. This
|
* In your login function just call `$this->Auth->login()` without any checks for POST data. This
|
||||||
* will send the authentication headers, and trigger the login dialog in the browser/client.
|
* will send the authentication headers, and trigger the login dialog in the browser/client.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components.auth
|
* @package Cake.Controller.Component.Auth
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
class BasicAuthenticate extends BaseAuthenticate {
|
class BasicAuthenticate extends BaseAuthenticate {
|
||||||
|
|
|
@ -31,7 +31,7 @@ App::uses('BaseAuthorize', 'Controller/Component/Auth');
|
||||||
* the above is simple implementation that would only authorize users of the 'admin' role to access
|
* the above is simple implementation that would only authorize users of the 'admin' role to access
|
||||||
* admin routing.
|
* admin routing.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components.auth
|
* @package Cake.Controller.Component.Auth
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @see AuthComponent::$authenticate
|
* @see AuthComponent::$authenticate
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -26,7 +26,7 @@ App::uses('Router', 'Routing');
|
||||||
* to create permission systems that focus more on what is being done to resources, rather than the specific actions
|
* to create permission systems that focus more on what is being done to resources, rather than the specific actions
|
||||||
* being visited.
|
* being visited.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components.auth
|
* @package Cake.Controller.Component.Auth
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @see AuthComponent::$authenticate
|
* @see AuthComponent::$authenticate
|
||||||
* @see AclComponent::check()
|
* @see AclComponent::check()
|
||||||
|
|
|
@ -51,7 +51,7 @@ App::uses('BaseAuthenticate', 'Controller/Component/Auth');
|
||||||
* login methods. For example `User.digest_pass` could be used for a digest password, while `User.password` would
|
* login methods. For example `User.digest_pass` could be used for a digest password, while `User.password` would
|
||||||
* store the password hash for use with other methods like Basic or Form.
|
* store the password hash for use with other methods like Basic or Form.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components.auth
|
* @package Cake.Controller.Component.Auth
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
class DigestAuthenticate extends BaseAuthenticate {
|
class DigestAuthenticate extends BaseAuthenticate {
|
||||||
|
|
|
@ -30,7 +30,7 @@ App::uses('BaseAuthenticate', 'Controller/Component/Auth');
|
||||||
* When configuring FormAuthenticate you can pass in settings to which fields, model and additional conditions
|
* When configuring FormAuthenticate you can pass in settings to which fields, model and additional conditions
|
||||||
* are used. See FormAuthenticate::$settings for more information.
|
* are used. See FormAuthenticate::$settings for more information.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components.auth
|
* @package Cake.Controller.Component.Auth
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @see AuthComponent::$authenticate
|
* @see AuthComponent::$authenticate
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
* @since CakePHP(tm) v 0.10.0.1076
|
* @since CakePHP(tm) v 0.10.0.1076
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -33,7 +33,7 @@ App::uses('BaseAuthenticate', 'Controller/Component/Auth');
|
||||||
*
|
*
|
||||||
* Binds access control with user authentication and session management.
|
* Binds access control with user authentication and session management.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
* @link http://book.cakephp.org/view/1250/Authentication
|
* @link http://book.cakephp.org/view/1250/Authentication
|
||||||
*/
|
*/
|
||||||
class AuthComponent extends Component {
|
class AuthComponent extends Component {
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
* @since CakePHP(tm) v 1.2.0.4213
|
* @since CakePHP(tm) v 1.2.0.4213
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -25,7 +25,7 @@ App::uses('Security', 'Utility');
|
||||||
*
|
*
|
||||||
* Cookie handling for the controller.
|
* Cookie handling for the controller.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
* @link http://book.cakephp.org/view/1280/Cookies
|
* @link http://book.cakephp.org/view/1280/Cookies
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
* @since CakePHP(tm) v 1.2.0.3467
|
* @since CakePHP(tm) v 1.2.0.3467
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -27,7 +27,7 @@ App::uses('CakeEmail', 'Network/Email');
|
||||||
* This component is used for handling Internet Message Format based
|
* This component is used for handling Internet Message Format based
|
||||||
* based on the standard outlined in http://www.rfc-editor.org/rfc/rfc2822.txt
|
* based on the standard outlined in http://www.rfc-editor.org/rfc/rfc2822.txt
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
* @link http://book.cakephp.org/view/1283/Email
|
* @link http://book.cakephp.org/view/1283/Email
|
||||||
* @deprecated Use Network/CakeEmail
|
* @deprecated Use Network/CakeEmail
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
* @since CakePHP(tm) v 2.0
|
* @since CakePHP(tm) v 2.0
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
*
|
*
|
||||||
* This would allow you to have different pagination settings for `Comment` and `Post` models.
|
* This would allow you to have different pagination settings for `Comment` and `Post` models.
|
||||||
*
|
*
|
||||||
* @package cake.libs.controller.components
|
* @package Cake.Controller.Component
|
||||||
*/
|
*/
|
||||||
class PaginatorComponent extends Component {
|
class PaginatorComponent extends Component {
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue