mirror of
https://github.com/brmlab/brmbiolab_sklad.git
synced 2025-06-08 05:04:02 +02:00
Initial commit
This commit is contained in:
commit
3b93da31de
1004 changed files with 265840 additions and 0 deletions
934
lib/Cake/Core/App.php
Normal file
934
lib/Cake/Core/App.php
Normal file
|
@ -0,0 +1,934 @@
|
|||
<?php
|
||||
/**
|
||||
* App class
|
||||
*
|
||||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||||
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
* @link http://cakephp.org CakePHP(tm) Project
|
||||
* @package Cake.Core
|
||||
* @since CakePHP(tm) v 1.2.0.6001
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
App::uses('Inflector', 'Utility');
|
||||
App::uses('CakePlugin', 'Core');
|
||||
|
||||
/**
|
||||
* App is responsible for path management, class location and class loading.
|
||||
*
|
||||
* ### Adding paths
|
||||
*
|
||||
* You can add paths to the search indexes App uses to find classes using `App::build()`. Adding
|
||||
* additional controller paths for example would alter where CakePHP looks for controllers.
|
||||
* This allows you to split your application up across the filesystem.
|
||||
*
|
||||
* ### Packages
|
||||
*
|
||||
* CakePHP is organized around the idea of packages, each class belongs to a package or folder where other
|
||||
* classes reside. You can configure each package location in your application using `App::build('APackage/SubPackage', $paths)`
|
||||
* to inform the framework where should each class be loaded. Almost every class in the CakePHP framework can be swapped
|
||||
* by your own compatible implementation. If you wish to use you own class instead of the classes the framework provides,
|
||||
* just add the class to your libs folder mocking the directory location of where CakePHP expects to find it.
|
||||
*
|
||||
* For instance if you'd like to use your own HttpSocket class, put it under
|
||||
*
|
||||
* app/Network/Http/HttpSocket.php
|
||||
*
|
||||
* ### Inspecting loaded paths
|
||||
*
|
||||
* You can inspect the currently loaded paths using `App::path('Controller')` for example to see loaded
|
||||
* controller paths.
|
||||
*
|
||||
* It is also possible to inspect paths for plugin classes, for instance, to see a plugin's helpers you would call
|
||||
* `App::path('View/Helper', 'MyPlugin')`
|
||||
*
|
||||
* ### Locating plugins and themes
|
||||
*
|
||||
* Plugins and Themes can be located with App as well. Using App::pluginPath('DebugKit') for example, will
|
||||
* give you the full path to the DebugKit plugin. App::themePath('purple'), would give the full path to the
|
||||
* `purple` theme.
|
||||
*
|
||||
* ### Inspecting known objects
|
||||
*
|
||||
* You can find out which objects App knows about using App::objects('Controller') for example to find
|
||||
* which application controllers App knows about.
|
||||
*
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html
|
||||
* @package Cake.Core
|
||||
*/
|
||||
class App {
|
||||
|
||||
/**
|
||||
* Append paths
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
const APPEND = 'append';
|
||||
|
||||
/**
|
||||
* Prepend paths
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
const PREPEND = 'prepend';
|
||||
|
||||
/**
|
||||
* Register package
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
const REGISTER = 'register';
|
||||
|
||||
/**
|
||||
* Reset paths instead of merging
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
const RESET = true;
|
||||
|
||||
/**
|
||||
* List of object types and their properties
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public static $types = array(
|
||||
'class' => array('extends' => null, 'core' => true),
|
||||
'file' => array('extends' => null, 'core' => true),
|
||||
'model' => array('extends' => 'AppModel', 'core' => false),
|
||||
'behavior' => array('suffix' => 'Behavior', 'extends' => 'Model/ModelBehavior', 'core' => true),
|
||||
'controller' => array('suffix' => 'Controller', 'extends' => 'AppController', 'core' => true),
|
||||
'component' => array('suffix' => 'Component', 'extends' => null, 'core' => true),
|
||||
'lib' => array('extends' => null, 'core' => true),
|
||||
'view' => array('suffix' => 'View', 'extends' => null, 'core' => true),
|
||||
'helper' => array('suffix' => 'Helper', 'extends' => 'AppHelper', 'core' => true),
|
||||
'vendor' => array('extends' => null, 'core' => true),
|
||||
'shell' => array('suffix' => 'Shell', 'extends' => 'AppShell', 'core' => true),
|
||||
'plugin' => array('extends' => null, 'core' => true)
|
||||
);
|
||||
|
||||
/**
|
||||
* Paths to search for files.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public static $search = array();
|
||||
|
||||
/**
|
||||
* Whether or not to return the file that is loaded.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public static $return = false;
|
||||
|
||||
/**
|
||||
* Holds key/value pairs of $type => file path.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $_map = array();
|
||||
|
||||
/**
|
||||
* Holds and key => value array of object types.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $_objects = array();
|
||||
|
||||
/**
|
||||
* Holds the location of each class
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $_classMap = array();
|
||||
|
||||
/**
|
||||
* Holds the possible paths for each package name
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $_packages = array();
|
||||
|
||||
/**
|
||||
* Holds the templates for each customizable package path in the application
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $_packageFormat = array();
|
||||
|
||||
/**
|
||||
* Maps an old style CakePHP class type to the corresponding package
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public static $legacy = array(
|
||||
'models' => 'Model',
|
||||
'behaviors' => 'Model/Behavior',
|
||||
'datasources' => 'Model/Datasource',
|
||||
'controllers' => 'Controller',
|
||||
'components' => 'Controller/Component',
|
||||
'views' => 'View',
|
||||
'helpers' => 'View/Helper',
|
||||
'shells' => 'Console/Command',
|
||||
'libs' => 'Lib',
|
||||
'vendors' => 'Vendor',
|
||||
'plugins' => 'Plugin',
|
||||
'locales' => 'Locale'
|
||||
);
|
||||
|
||||
/**
|
||||
* Indicates whether the class cache should be stored again because of an addition to it
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected static $_cacheChange = false;
|
||||
|
||||
/**
|
||||
* Indicates whether the object cache should be stored again because of an addition to it
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected static $_objectCacheChange = false;
|
||||
|
||||
/**
|
||||
* Indicates the the Application is in the bootstrapping process. Used to better cache
|
||||
* loaded classes while the cache libraries have not been yet initialized
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public static $bootstrapping = false;
|
||||
|
||||
/**
|
||||
* Used to read information stored path
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
* `App::path('Model'); will return all paths for models`
|
||||
*
|
||||
* `App::path('Model/Datasource', 'MyPlugin'); will return the path for datasources under the 'MyPlugin' plugin`
|
||||
*
|
||||
* @param string $type type of path
|
||||
* @param string $plugin name of plugin
|
||||
* @return array
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#App::path
|
||||
*/
|
||||
public static function path($type, $plugin = null) {
|
||||
if (!empty(self::$legacy[$type])) {
|
||||
$type = self::$legacy[$type];
|
||||
}
|
||||
|
||||
if (!empty($plugin)) {
|
||||
$path = array();
|
||||
$pluginPath = CakePlugin::path($plugin);
|
||||
$packageFormat = self::_packageFormat();
|
||||
if (!empty($packageFormat[$type])) {
|
||||
foreach ($packageFormat[$type] as $f) {
|
||||
$path[] = sprintf($f, $pluginPath);
|
||||
}
|
||||
}
|
||||
return $path;
|
||||
}
|
||||
|
||||
if (!isset(self::$_packages[$type])) {
|
||||
return array();
|
||||
}
|
||||
return self::$_packages[$type];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all the currently loaded paths from App. Useful for inspecting
|
||||
* or storing all paths App knows about. For a paths to a specific package
|
||||
* use App::path()
|
||||
*
|
||||
* @return array An array of packages and their associated paths.
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#App::paths
|
||||
*/
|
||||
public static function paths() {
|
||||
return self::$_packages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets up each package location on the file system. You can configure multiple search paths
|
||||
* for each package, those will be used to look for files one folder at a time in the specified order
|
||||
* All paths should be terminated with a Directory separator
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
* `App::build(array(Model' => array('/a/full/path/to/models/'))); will setup a new search path for the Model package`
|
||||
*
|
||||
* `App::build(array('Model' => array('/path/to/models/')), App::RESET); will setup the path as the only valid path for searching models`
|
||||
*
|
||||
* `App::build(array('View/Helper' => array('/path/to/helpers/', '/another/path/'))); will setup multiple search paths for helpers`
|
||||
*
|
||||
* `App::build(array('Service' => array('%s' . 'Service' . DS)), App::REGISTER); will register new package 'Service'`
|
||||
*
|
||||
* If reset is set to true, all loaded plugins will be forgotten and they will be needed to be loaded again.
|
||||
*
|
||||
* @param array $paths associative array with package names as keys and a list of directories for new search paths
|
||||
* @param bool|string $mode App::RESET will set paths, App::APPEND with append paths, App::PREPEND will prepend paths (default)
|
||||
* App::REGISTER will register new packages and their paths, %s in path will be replaced by APP path
|
||||
* @return void
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#App::build
|
||||
*/
|
||||
public static function build($paths = array(), $mode = App::PREPEND) {
|
||||
//Provides Backwards compatibility for old-style package names
|
||||
$legacyPaths = array();
|
||||
foreach ($paths as $type => $path) {
|
||||
if (!empty(self::$legacy[$type])) {
|
||||
$type = self::$legacy[$type];
|
||||
}
|
||||
$legacyPaths[$type] = $path;
|
||||
}
|
||||
$paths = $legacyPaths;
|
||||
|
||||
if ($mode === App::RESET) {
|
||||
foreach ($paths as $type => $new) {
|
||||
self::$_packages[$type] = (array)$new;
|
||||
self::objects($type, null, false);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (empty($paths)) {
|
||||
self::$_packageFormat = null;
|
||||
}
|
||||
|
||||
$packageFormat = self::_packageFormat();
|
||||
|
||||
if ($mode === App::REGISTER) {
|
||||
foreach ($paths as $package => $formats) {
|
||||
if (empty($packageFormat[$package])) {
|
||||
$packageFormat[$package] = $formats;
|
||||
} else {
|
||||
$formats = array_merge($packageFormat[$package], $formats);
|
||||
$packageFormat[$package] = array_values(array_unique($formats));
|
||||
}
|
||||
}
|
||||
self::$_packageFormat = $packageFormat;
|
||||
}
|
||||
|
||||
$defaults = array();
|
||||
foreach ($packageFormat as $package => $format) {
|
||||
foreach ($format as $f) {
|
||||
$defaults[$package][] = sprintf($f, APP);
|
||||
}
|
||||
}
|
||||
|
||||
if (empty($paths)) {
|
||||
self::$_packages = $defaults;
|
||||
return;
|
||||
}
|
||||
|
||||
if ($mode === App::REGISTER) {
|
||||
$paths = array();
|
||||
}
|
||||
|
||||
foreach ($defaults as $type => $default) {
|
||||
if (!empty(self::$_packages[$type])) {
|
||||
$path = self::$_packages[$type];
|
||||
} else {
|
||||
$path = $default;
|
||||
}
|
||||
|
||||
if (!empty($paths[$type])) {
|
||||
$newPath = (array)$paths[$type];
|
||||
|
||||
if ($mode === App::PREPEND) {
|
||||
$path = array_merge($newPath, $path);
|
||||
} else {
|
||||
$path = array_merge($path, $newPath);
|
||||
}
|
||||
|
||||
$path = array_values(array_unique($path));
|
||||
}
|
||||
|
||||
self::$_packages[$type] = $path;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the path that a plugin is on. Searches through the defined plugin paths.
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
* `App::pluginPath('MyPlugin'); will return the full path to 'MyPlugin' plugin'`
|
||||
*
|
||||
* @param string $plugin CamelCased/lower_cased plugin name to find the path of.
|
||||
* @return string full path to the plugin.
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#App::pluginPath
|
||||
* @deprecated Use CakePlugin::path() instead.
|
||||
*/
|
||||
public static function pluginPath($plugin) {
|
||||
return CakePlugin::path($plugin);
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the path that a theme is on. Searches through the defined theme paths.
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
* `App::themePath('MyTheme'); will return the full path to the 'MyTheme' theme`
|
||||
*
|
||||
* @param string $theme theme name to find the path of.
|
||||
* @return string full path to the theme.
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#App::themePath
|
||||
*/
|
||||
public static function themePath($theme) {
|
||||
$themeDir = 'Themed' . DS . Inflector::camelize($theme);
|
||||
foreach (self::$_packages['View'] as $path) {
|
||||
if (is_dir($path . $themeDir)) {
|
||||
return $path . $themeDir . DS;
|
||||
}
|
||||
}
|
||||
return self::$_packages['View'][0] . $themeDir . DS;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the full path to a package inside the CakePHP core
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
* `App::core('Cache/Engine'); will return the full path to the cache engines package`
|
||||
*
|
||||
* @param string $type Package type.
|
||||
* @return array full path to package
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#App::core
|
||||
*/
|
||||
public static function core($type) {
|
||||
return array(CAKE . str_replace('/', DS, $type) . DS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of objects of the given type.
|
||||
*
|
||||
* Example usage:
|
||||
*
|
||||
* `App::objects('plugin');` returns `array('DebugKit', 'Blog', 'User');`
|
||||
*
|
||||
* `App::objects('Controller');` returns `array('PagesController', 'BlogController');`
|
||||
*
|
||||
* You can also search only within a plugin's objects by using the plugin dot
|
||||
* syntax.
|
||||
*
|
||||
* `App::objects('MyPlugin.Model');` returns `array('MyPluginPost', 'MyPluginComment');`
|
||||
*
|
||||
* When scanning directories, files and directories beginning with `.` will be excluded as these
|
||||
* are commonly used by version control systems.
|
||||
*
|
||||
* @param string $type Type of object, i.e. 'Model', 'Controller', 'View/Helper', 'file', 'class' or 'plugin'
|
||||
* @param string|array $path Optional Scan only the path given. If null, paths for the chosen type will be used.
|
||||
* @param bool $cache Set to false to rescan objects of the chosen type. Defaults to true.
|
||||
* @return mixed Either false on incorrect / miss. Or an array of found objects.
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#App::objects
|
||||
*/
|
||||
public static function objects($type, $path = null, $cache = true) {
|
||||
if (empty(self::$_objects) && $cache === true) {
|
||||
self::$_objects = (array)Cache::read('object_map', '_cake_core_');
|
||||
}
|
||||
|
||||
$extension = '/\.php$/';
|
||||
$includeDirectories = false;
|
||||
$name = $type;
|
||||
|
||||
if ($type === 'plugin') {
|
||||
$type = 'plugins';
|
||||
}
|
||||
|
||||
if ($type === 'plugins') {
|
||||
$extension = '/.*/';
|
||||
$includeDirectories = true;
|
||||
}
|
||||
|
||||
list($plugin, $type) = pluginSplit($type);
|
||||
|
||||
if (isset(self::$legacy[$type . 's'])) {
|
||||
$type = self::$legacy[$type . 's'];
|
||||
}
|
||||
|
||||
if ($type === 'file' && !$path) {
|
||||
return false;
|
||||
} elseif ($type === 'file') {
|
||||
$extension = '/\.php$/';
|
||||
$name = $type . str_replace(DS, '', $path);
|
||||
}
|
||||
|
||||
$cacheLocation = empty($plugin) ? 'app' : $plugin;
|
||||
|
||||
if ($cache !== true || !isset(self::$_objects[$cacheLocation][$name])) {
|
||||
$objects = array();
|
||||
|
||||
if (empty($path)) {
|
||||
$path = self::path($type, $plugin);
|
||||
}
|
||||
|
||||
foreach ((array)$path as $dir) {
|
||||
if ($dir != APP && is_dir($dir)) {
|
||||
$files = new RegexIterator(new DirectoryIterator($dir), $extension);
|
||||
foreach ($files as $file) {
|
||||
$fileName = basename($file);
|
||||
if (!$file->isDot() && $fileName[0] !== '.') {
|
||||
$isDir = $file->isDir();
|
||||
if ($isDir && $includeDirectories) {
|
||||
$objects[] = $fileName;
|
||||
} elseif (!$includeDirectories && !$isDir) {
|
||||
$objects[] = substr($fileName, 0, -4);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($type !== 'file') {
|
||||
foreach ($objects as $key => $value) {
|
||||
$objects[$key] = Inflector::camelize($value);
|
||||
}
|
||||
}
|
||||
|
||||
sort($objects);
|
||||
if ($plugin) {
|
||||
return $objects;
|
||||
}
|
||||
|
||||
self::$_objects[$cacheLocation][$name] = $objects;
|
||||
if ($cache) {
|
||||
self::$_objectCacheChange = true;
|
||||
}
|
||||
}
|
||||
|
||||
return self::$_objects[$cacheLocation][$name];
|
||||
}
|
||||
|
||||
/**
|
||||
* Declares a package for a class. This package location will be used
|
||||
* by the automatic class loader if the class is tried to be used
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
* `App::uses('MyCustomController', 'Controller');` will setup the class to be found under Controller package
|
||||
*
|
||||
* `App::uses('MyHelper', 'MyPlugin.View/Helper');` will setup the helper class to be found in plugin's helper package
|
||||
*
|
||||
* @param string $className the name of the class to configure package for
|
||||
* @param string $location the package name
|
||||
* @return void
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#App::uses
|
||||
*/
|
||||
public static function uses($className, $location) {
|
||||
self::$_classMap[$className] = $location;
|
||||
}
|
||||
|
||||
/**
|
||||
* Method to handle the automatic class loading. It will look for each class' package
|
||||
* defined using App::uses() and with this information it will resolve the package name to a full path
|
||||
* to load the class from. File name for each class should follow the class name. For instance,
|
||||
* if a class is name `MyCustomClass` the file name should be `MyCustomClass.php`
|
||||
*
|
||||
* @param string $className the name of the class to load
|
||||
* @return bool
|
||||
*/
|
||||
public static function load($className) {
|
||||
if (!isset(self::$_classMap[$className])) {
|
||||
return false;
|
||||
}
|
||||
if (strpos($className, '..') !== false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$parts = explode('.', self::$_classMap[$className], 2);
|
||||
list($plugin, $package) = count($parts) > 1 ? $parts : array(null, current($parts));
|
||||
|
||||
$file = self::_mapped($className, $plugin);
|
||||
if ($file) {
|
||||
return include $file;
|
||||
}
|
||||
$paths = self::path($package, $plugin);
|
||||
|
||||
if (empty($plugin)) {
|
||||
$appLibs = empty(self::$_packages['Lib']) ? APPLIBS : current(self::$_packages['Lib']);
|
||||
$paths[] = $appLibs . $package . DS;
|
||||
$paths[] = APP . $package . DS;
|
||||
$paths[] = CAKE . $package . DS;
|
||||
} else {
|
||||
$pluginPath = CakePlugin::path($plugin);
|
||||
$paths[] = $pluginPath . 'Lib' . DS . $package . DS;
|
||||
$paths[] = $pluginPath . $package . DS;
|
||||
}
|
||||
|
||||
$normalizedClassName = str_replace('\\', DS, $className);
|
||||
foreach ($paths as $path) {
|
||||
$file = $path . $normalizedClassName . '.php';
|
||||
if (file_exists($file)) {
|
||||
self::_map($file, $className, $plugin);
|
||||
return include $file;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the package name where a class was defined to be located at
|
||||
*
|
||||
* @param string $className name of the class to obtain the package name from
|
||||
* @return string package name or null if not declared
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#App::location
|
||||
*/
|
||||
public static function location($className) {
|
||||
if (!empty(self::$_classMap[$className])) {
|
||||
return self::$_classMap[$className];
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds classes based on $name or specific file(s) to search. Calling App::import() will
|
||||
* not construct any classes contained in the files. It will only find and require() the file.
|
||||
*
|
||||
* @param string|array $type The type of Class if passed as a string, or all params can be passed as
|
||||
* an single array to $type.
|
||||
* @param string $name Name of the Class or a unique name for the file
|
||||
* @param bool|array $parent boolean true if Class Parent should be searched, accepts key => value
|
||||
* array('parent' => $parent, 'file' => $file, 'search' => $search, 'ext' => '$ext');
|
||||
* $ext allows setting the extension of the file name
|
||||
* based on Inflector::underscore($name) . ".$ext";
|
||||
* @param array $search paths to search for files, array('path 1', 'path 2', 'path 3');
|
||||
* @param string $file full name of the file to search for including extension
|
||||
* @param bool $return Return the loaded file, the file must have a return
|
||||
* statement in it to work: return $variable;
|
||||
* @return bool true if Class is already in memory or if file is found and loaded, false if not
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/app.html#including-files-with-app-import
|
||||
*/
|
||||
public static function import($type = null, $name = null, $parent = true, $search = array(), $file = null, $return = false) {
|
||||
$ext = null;
|
||||
|
||||
if (is_array($type)) {
|
||||
extract($type, EXTR_OVERWRITE);
|
||||
}
|
||||
|
||||
if (is_array($parent)) {
|
||||
extract($parent, EXTR_OVERWRITE);
|
||||
}
|
||||
|
||||
if (!$name && !$file) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (is_array($name)) {
|
||||
foreach ($name as $class) {
|
||||
if (!App::import(compact('type', 'parent', 'search', 'file', 'return') + array('name' => $class))) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
$originalType = strtolower($type);
|
||||
$specialPackage = in_array($originalType, array('file', 'vendor'));
|
||||
if (!$specialPackage && isset(self::$legacy[$originalType . 's'])) {
|
||||
$type = self::$legacy[$originalType . 's'];
|
||||
}
|
||||
list($plugin, $name) = pluginSplit($name);
|
||||
if (!empty($plugin)) {
|
||||
if (!CakePlugin::loaded($plugin)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$specialPackage) {
|
||||
return self::_loadClass($name, $plugin, $type, $originalType, $parent);
|
||||
}
|
||||
|
||||
if ($originalType === 'file' && !empty($file)) {
|
||||
return self::_loadFile($name, $plugin, $search, $file, $return);
|
||||
}
|
||||
|
||||
if ($originalType === 'vendor') {
|
||||
return self::_loadVendor($name, $plugin, $file, $ext);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to include classes
|
||||
* This is a compatibility wrapper around using App::uses() and automatic class loading
|
||||
*
|
||||
* @param string $name unique name of the file for identifying it inside the application
|
||||
* @param string $plugin camel cased plugin name if any
|
||||
* @param string $type name of the packed where the class is located
|
||||
* @param string $originalType type name as supplied initially by the user
|
||||
* @param bool $parent whether to load the class parent or not
|
||||
* @return bool true indicating the successful load and existence of the class
|
||||
*/
|
||||
protected static function _loadClass($name, $plugin, $type, $originalType, $parent) {
|
||||
if ($type === 'Console/Command' && $name === 'Shell') {
|
||||
$type = 'Console';
|
||||
} elseif (isset(self::$types[$originalType]['suffix'])) {
|
||||
$suffix = self::$types[$originalType]['suffix'];
|
||||
$name .= ($suffix === $name) ? '' : $suffix;
|
||||
}
|
||||
if ($parent && isset(self::$types[$originalType]['extends'])) {
|
||||
$extends = self::$types[$originalType]['extends'];
|
||||
$extendType = $type;
|
||||
if (strpos($extends, '/') !== false) {
|
||||
$parts = explode('/', $extends);
|
||||
$extends = array_pop($parts);
|
||||
$extendType = implode('/', $parts);
|
||||
}
|
||||
App::uses($extends, $extendType);
|
||||
if ($plugin && in_array($originalType, array('controller', 'model'))) {
|
||||
App::uses($plugin . $extends, $plugin . '.' . $type);
|
||||
}
|
||||
}
|
||||
if ($plugin) {
|
||||
$plugin .= '.';
|
||||
}
|
||||
$name = Inflector::camelize($name);
|
||||
App::uses($name, $plugin . $type);
|
||||
return class_exists($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to include single files
|
||||
*
|
||||
* @param string $name unique name of the file for identifying it inside the application
|
||||
* @param string $plugin camel cased plugin name if any
|
||||
* @param array $search list of paths to search the file into
|
||||
* @param string $file filename if known, the $name param will be used otherwise
|
||||
* @param bool $return whether this function should return the contents of the file after being parsed by php or just a success notice
|
||||
* @return mixed if $return contents of the file after php parses it, boolean indicating success otherwise
|
||||
*/
|
||||
protected static function _loadFile($name, $plugin, $search, $file, $return) {
|
||||
$mapped = self::_mapped($name, $plugin);
|
||||
if ($mapped) {
|
||||
$file = $mapped;
|
||||
} elseif (!empty($search)) {
|
||||
foreach ($search as $path) {
|
||||
$found = false;
|
||||
if (file_exists($path . $file)) {
|
||||
$file = $path . $file;
|
||||
$found = true;
|
||||
break;
|
||||
}
|
||||
if (empty($found)) {
|
||||
$file = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!empty($file) && file_exists($file)) {
|
||||
self::_map($file, $name, $plugin);
|
||||
$returnValue = include $file;
|
||||
if ($return) {
|
||||
return $returnValue;
|
||||
}
|
||||
return (bool)$returnValue;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to load files from vendors folders
|
||||
*
|
||||
* @param string $name unique name of the file for identifying it inside the application
|
||||
* @param string $plugin camel cased plugin name if any
|
||||
* @param string $file file name if known
|
||||
* @param string $ext file extension if known
|
||||
* @return bool true if the file was loaded successfully, false otherwise
|
||||
*/
|
||||
protected static function _loadVendor($name, $plugin, $file, $ext) {
|
||||
if ($mapped = self::_mapped($name, $plugin)) {
|
||||
return (bool)include_once $mapped;
|
||||
}
|
||||
$fileTries = array();
|
||||
$paths = ($plugin) ? App::path('vendors', $plugin) : App::path('vendors');
|
||||
if (empty($ext)) {
|
||||
$ext = 'php';
|
||||
}
|
||||
if (empty($file)) {
|
||||
$fileTries[] = $name . '.' . $ext;
|
||||
$fileTries[] = Inflector::underscore($name) . '.' . $ext;
|
||||
} else {
|
||||
$fileTries[] = $file;
|
||||
}
|
||||
|
||||
foreach ($fileTries as $file) {
|
||||
foreach ($paths as $path) {
|
||||
if (file_exists($path . $file)) {
|
||||
self::_map($path . $file, $name, $plugin);
|
||||
return (bool)include $path . $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initializes the cache for App, registers a shutdown function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function init() {
|
||||
self::$_map += (array)Cache::read('file_map', '_cake_core_');
|
||||
register_shutdown_function(array('App', 'shutdown'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Maps the $name to the $file.
|
||||
*
|
||||
* @param string $file full path to file
|
||||
* @param string $name unique name for this map
|
||||
* @param string $plugin camelized if object is from a plugin, the name of the plugin
|
||||
* @return void
|
||||
*/
|
||||
protected static function _map($file, $name, $plugin = null) {
|
||||
$key = $name;
|
||||
if ($plugin) {
|
||||
$key = 'plugin.' . $name;
|
||||
}
|
||||
if ($plugin && empty(self::$_map[$name])) {
|
||||
self::$_map[$key] = $file;
|
||||
}
|
||||
if (!$plugin && empty(self::$_map['plugin.' . $name])) {
|
||||
self::$_map[$key] = $file;
|
||||
}
|
||||
if (!self::$bootstrapping) {
|
||||
self::$_cacheChange = true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a file's complete path.
|
||||
*
|
||||
* @param string $name unique name
|
||||
* @param string $plugin camelized if object is from a plugin, the name of the plugin
|
||||
* @return mixed file path if found, false otherwise
|
||||
*/
|
||||
protected static function _mapped($name, $plugin = null) {
|
||||
$key = $name;
|
||||
if ($plugin) {
|
||||
$key = 'plugin.' . $name;
|
||||
}
|
||||
return isset(self::$_map[$key]) ? self::$_map[$key] : false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets then returns the templates for each customizable package path
|
||||
*
|
||||
* @return array templates for each customizable package path
|
||||
*/
|
||||
protected static function _packageFormat() {
|
||||
if (empty(self::$_packageFormat)) {
|
||||
self::$_packageFormat = array(
|
||||
'Model' => array(
|
||||
'%s' . 'Model' . DS
|
||||
),
|
||||
'Model/Behavior' => array(
|
||||
'%s' . 'Model' . DS . 'Behavior' . DS
|
||||
),
|
||||
'Model/Datasource' => array(
|
||||
'%s' . 'Model' . DS . 'Datasource' . DS
|
||||
),
|
||||
'Model/Datasource/Database' => array(
|
||||
'%s' . 'Model' . DS . 'Datasource' . DS . 'Database' . DS
|
||||
),
|
||||
'Model/Datasource/Session' => array(
|
||||
'%s' . 'Model' . DS . 'Datasource' . DS . 'Session' . DS
|
||||
),
|
||||
'Controller' => array(
|
||||
'%s' . 'Controller' . DS
|
||||
),
|
||||
'Controller/Component' => array(
|
||||
'%s' . 'Controller' . DS . 'Component' . DS
|
||||
),
|
||||
'Controller/Component/Auth' => array(
|
||||
'%s' . 'Controller' . DS . 'Component' . DS . 'Auth' . DS
|
||||
),
|
||||
'Controller/Component/Acl' => array(
|
||||
'%s' . 'Controller' . DS . 'Component' . DS . 'Acl' . DS
|
||||
),
|
||||
'View' => array(
|
||||
'%s' . 'View' . DS
|
||||
),
|
||||
'View/Helper' => array(
|
||||
'%s' . 'View' . DS . 'Helper' . DS
|
||||
),
|
||||
'Console' => array(
|
||||
'%s' . 'Console' . DS
|
||||
),
|
||||
'Console/Command' => array(
|
||||
'%s' . 'Console' . DS . 'Command' . DS
|
||||
),
|
||||
'Console/Command/Task' => array(
|
||||
'%s' . 'Console' . DS . 'Command' . DS . 'Task' . DS
|
||||
),
|
||||
'Lib' => array(
|
||||
'%s' . 'Lib' . DS
|
||||
),
|
||||
'Locale' => array(
|
||||
'%s' . 'Locale' . DS
|
||||
),
|
||||
'Vendor' => array(
|
||||
'%s' . 'Vendor' . DS,
|
||||
dirname(dirname(CAKE)) . DS . 'vendors' . DS,
|
||||
),
|
||||
'Plugin' => array(
|
||||
APP . 'Plugin' . DS,
|
||||
dirname(dirname(CAKE)) . DS . 'plugins' . DS
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return self::$_packageFormat;
|
||||
}
|
||||
|
||||
/**
|
||||
* Object destructor.
|
||||
*
|
||||
* Writes cache file if changes have been made to the $_map. Also, check if a fatal
|
||||
* error happened and call the handler.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function shutdown() {
|
||||
if (self::$_cacheChange) {
|
||||
Cache::write('file_map', array_filter(self::$_map), '_cake_core_');
|
||||
}
|
||||
if (self::$_objectCacheChange) {
|
||||
Cache::write('object_map', self::$_objects, '_cake_core_');
|
||||
}
|
||||
self::_checkFatalError();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a fatal error happened and trigger the configured handler if configured
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected static function _checkFatalError() {
|
||||
$lastError = error_get_last();
|
||||
if (!is_array($lastError)) {
|
||||
return;
|
||||
}
|
||||
|
||||
list(, $log) = ErrorHandler::mapErrorCode($lastError['type']);
|
||||
if ($log !== LOG_ERR) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (PHP_SAPI === 'cli') {
|
||||
$errorHandler = Configure::read('Error.consoleHandler');
|
||||
} else {
|
||||
$errorHandler = Configure::read('Error.handler');
|
||||
}
|
||||
if (!is_callable($errorHandler)) {
|
||||
return;
|
||||
}
|
||||
call_user_func($errorHandler, $lastError['type'], $lastError['message'], $lastError['file'], $lastError['line'], array());
|
||||
}
|
||||
|
||||
}
|
250
lib/Cake/Core/CakePlugin.php
Normal file
250
lib/Cake/Core/CakePlugin.php
Normal file
|
@ -0,0 +1,250 @@
|
|||
<?php
|
||||
/**
|
||||
* CakePlugin class
|
||||
*
|
||||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||||
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
* @link http://cakephp.org CakePHP(tm) Project
|
||||
* @package Cake.Core
|
||||
* @since CakePHP(tm) v 2.0.0
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
/**
|
||||
* CakePlugin is responsible for loading and unloading plugins. It also can
|
||||
* retrieve plugin paths and load their bootstrap and routes files.
|
||||
*
|
||||
* @package Cake.Core
|
||||
* @link http://book.cakephp.org/2.0/en/plugins.html
|
||||
*/
|
||||
class CakePlugin {
|
||||
|
||||
/**
|
||||
* Holds a list of all loaded plugins and their configuration
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $_plugins = array();
|
||||
|
||||
/**
|
||||
* Loads a plugin and optionally loads bootstrapping, routing files or loads a initialization function
|
||||
*
|
||||
* Examples:
|
||||
*
|
||||
* `CakePlugin::load('DebugKit')` will load the DebugKit plugin and will not load any bootstrap nor route files
|
||||
* `CakePlugin::load('DebugKit', array('bootstrap' => true, 'routes' => true))` will load the bootstrap.php and routes.php files
|
||||
* `CakePlugin::load('DebugKit', array('bootstrap' => false, 'routes' => true))` will load routes.php file but not bootstrap.php
|
||||
* `CakePlugin::load('DebugKit', array('bootstrap' => array('config1', 'config2')))` will load config1.php and config2.php files
|
||||
* `CakePlugin::load('DebugKit', array('bootstrap' => 'aCallableMethod'))` will run the aCallableMethod function to initialize it
|
||||
*
|
||||
* Bootstrap initialization functions can be expressed as a PHP callback type, including closures. Callbacks will receive two
|
||||
* parameters (plugin name, plugin configuration)
|
||||
*
|
||||
* It is also possible to load multiple plugins at once. Examples:
|
||||
*
|
||||
* `CakePlugin::load(array('DebugKit', 'ApiGenerator'))` will load the DebugKit and ApiGenerator plugins
|
||||
* `CakePlugin::load(array('DebugKit', 'ApiGenerator'), array('bootstrap' => true))` will load bootstrap file for both plugins
|
||||
*
|
||||
* {{{
|
||||
* CakePlugin::load(array(
|
||||
* 'DebugKit' => array('routes' => true),
|
||||
* 'ApiGenerator'
|
||||
* ), array('bootstrap' => true))
|
||||
* }}}
|
||||
*
|
||||
* Will only load the bootstrap for ApiGenerator and only the routes for DebugKit
|
||||
*
|
||||
* @param string|array $plugin name of the plugin to be loaded in CamelCase format or array or plugins to load
|
||||
* @param array $config configuration options for the plugin
|
||||
* @throws MissingPluginException if the folder for the plugin to be loaded is not found
|
||||
* @return void
|
||||
*/
|
||||
public static function load($plugin, $config = array()) {
|
||||
if (is_array($plugin)) {
|
||||
foreach ($plugin as $name => $conf) {
|
||||
list($name, $conf) = (is_numeric($name)) ? array($conf, $config) : array($name, $conf);
|
||||
self::load($name, $conf);
|
||||
}
|
||||
return;
|
||||
}
|
||||
$config += array('bootstrap' => false, 'routes' => false, 'ignoreMissing' => false);
|
||||
if (empty($config['path'])) {
|
||||
foreach (App::path('plugins') as $path) {
|
||||
if (is_dir($path . $plugin)) {
|
||||
self::$_plugins[$plugin] = $config + array('path' => $path . $plugin . DS);
|
||||
break;
|
||||
}
|
||||
|
||||
//Backwards compatibility to make easier to migrate to 2.0
|
||||
$underscored = Inflector::underscore($plugin);
|
||||
if (is_dir($path . $underscored)) {
|
||||
self::$_plugins[$plugin] = $config + array('path' => $path . $underscored . DS);
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
self::$_plugins[$plugin] = $config;
|
||||
}
|
||||
|
||||
if (empty(self::$_plugins[$plugin]['path'])) {
|
||||
throw new MissingPluginException(array('plugin' => $plugin));
|
||||
}
|
||||
if (!empty(self::$_plugins[$plugin]['bootstrap'])) {
|
||||
self::bootstrap($plugin);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Will load all the plugins located in the configured plugins folders
|
||||
* If passed an options array, it will be used as a common default for all plugins to be loaded
|
||||
* It is possible to set specific defaults for each plugins in the options array. Examples:
|
||||
*
|
||||
* {{{
|
||||
* CakePlugin::loadAll(array(
|
||||
* array('bootstrap' => true),
|
||||
* 'DebugKit' => array('routes' => true, 'bootstrap' => false),
|
||||
* ))
|
||||
* }}}
|
||||
*
|
||||
* The above example will load the bootstrap file for all plugins, but for DebugKit it will only load
|
||||
* the routes file and will not look for any bootstrap script.
|
||||
*
|
||||
* @param array $options Options list. See CakePlugin::load() for valid options.
|
||||
* @return void
|
||||
*/
|
||||
public static function loadAll($options = array()) {
|
||||
$plugins = App::objects('plugins');
|
||||
foreach ($plugins as $p) {
|
||||
$opts = isset($options[$p]) ? (array)$options[$p] : array();
|
||||
if (isset($options[0])) {
|
||||
$opts += $options[0];
|
||||
}
|
||||
self::load($p, $opts);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the filesystem path for a plugin
|
||||
*
|
||||
* @param string $plugin name of the plugin in CamelCase format
|
||||
* @return string path to the plugin folder
|
||||
* @throws MissingPluginException if the folder for plugin was not found or plugin has not been loaded
|
||||
*/
|
||||
public static function path($plugin) {
|
||||
if (empty(self::$_plugins[$plugin])) {
|
||||
throw new MissingPluginException(array('plugin' => $plugin));
|
||||
}
|
||||
return self::$_plugins[$plugin]['path'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the bootstrapping files for a plugin, or calls the initialization setup in the configuration
|
||||
*
|
||||
* @param string $plugin name of the plugin
|
||||
* @return mixed
|
||||
* @see CakePlugin::load() for examples of bootstrap configuration
|
||||
*/
|
||||
public static function bootstrap($plugin) {
|
||||
$config = self::$_plugins[$plugin];
|
||||
if ($config['bootstrap'] === false) {
|
||||
return false;
|
||||
}
|
||||
if (is_callable($config['bootstrap'])) {
|
||||
return call_user_func_array($config['bootstrap'], array($plugin, $config));
|
||||
}
|
||||
|
||||
$path = self::path($plugin);
|
||||
if ($config['bootstrap'] === true) {
|
||||
return self::_includeFile(
|
||||
$path . 'Config' . DS . 'bootstrap.php',
|
||||
$config['ignoreMissing']
|
||||
);
|
||||
}
|
||||
|
||||
$bootstrap = (array)$config['bootstrap'];
|
||||
foreach ($bootstrap as $file) {
|
||||
self::_includeFile(
|
||||
$path . 'Config' . DS . $file . '.php',
|
||||
$config['ignoreMissing']
|
||||
);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the routes file for a plugin, or all plugins configured to load their respective routes file
|
||||
*
|
||||
* @param string $plugin name of the plugin, if null will operate on all plugins having enabled the
|
||||
* loading of routes files
|
||||
* @return bool
|
||||
*/
|
||||
public static function routes($plugin = null) {
|
||||
if ($plugin === null) {
|
||||
foreach (self::loaded() as $p) {
|
||||
self::routes($p);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
$config = self::$_plugins[$plugin];
|
||||
if ($config['routes'] === false) {
|
||||
return false;
|
||||
}
|
||||
return (bool)self::_includeFile(
|
||||
self::path($plugin) . 'Config' . DS . 'routes.php',
|
||||
$config['ignoreMissing']
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the plugin $plugin is already loaded
|
||||
* If plugin is null, it will return a list of all loaded plugins
|
||||
*
|
||||
* @param string $plugin Plugin name to check.
|
||||
* @return mixed boolean true if $plugin is already loaded.
|
||||
* If $plugin is null, returns a list of plugins that have been loaded
|
||||
*/
|
||||
public static function loaded($plugin = null) {
|
||||
if ($plugin) {
|
||||
return isset(self::$_plugins[$plugin]);
|
||||
}
|
||||
$return = array_keys(self::$_plugins);
|
||||
sort($return);
|
||||
return $return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Forgets a loaded plugin or all of them if first parameter is null
|
||||
*
|
||||
* @param string $plugin name of the plugin to forget
|
||||
* @return void
|
||||
*/
|
||||
public static function unload($plugin = null) {
|
||||
if ($plugin === null) {
|
||||
self::$_plugins = array();
|
||||
} else {
|
||||
unset(self::$_plugins[$plugin]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Include file, ignoring include error if needed if file is missing
|
||||
*
|
||||
* @param string $file File to include
|
||||
* @param bool $ignoreMissing Whether to ignore include error for missing files
|
||||
* @return mixed
|
||||
*/
|
||||
protected static function _includeFile($file, $ignoreMissing = false) {
|
||||
if ($ignoreMissing && !is_file($file)) {
|
||||
return false;
|
||||
}
|
||||
return include $file;
|
||||
}
|
||||
|
||||
}
|
450
lib/Cake/Core/Configure.php
Normal file
450
lib/Cake/Core/Configure.php
Normal file
|
@ -0,0 +1,450 @@
|
|||
<?php
|
||||
/**
|
||||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||||
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
* @link http://cakephp.org CakePHP(tm) Project
|
||||
* @package Cake.Core
|
||||
* @since CakePHP(tm) v 1.0.0.2363
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
App::uses('Hash', 'Utility');
|
||||
App::uses('ConfigReaderInterface', 'Configure');
|
||||
|
||||
/**
|
||||
* Compatibility with 2.1, which expects Configure to load Set.
|
||||
*/
|
||||
App::uses('Set', 'Utility');
|
||||
|
||||
/**
|
||||
* Configuration class. Used for managing runtime configuration information.
|
||||
*
|
||||
* Provides features for reading and writing to the runtime configuration, as well
|
||||
* as methods for loading additional configuration files or storing runtime configuration
|
||||
* for future use.
|
||||
*
|
||||
* @package Cake.Core
|
||||
* @link http://book.cakephp.org/2.0/en/development/configuration.html#configure-class
|
||||
*/
|
||||
class Configure {
|
||||
|
||||
/**
|
||||
* Array of values currently stored in Configure.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $_values = array(
|
||||
'debug' => 0
|
||||
);
|
||||
|
||||
/**
|
||||
* Configured reader classes, used to load config files from resources
|
||||
*
|
||||
* @var array
|
||||
* @see Configure::load()
|
||||
*/
|
||||
protected static $_readers = array();
|
||||
|
||||
/**
|
||||
* Initializes configure and runs the bootstrap process.
|
||||
* Bootstrapping includes the following steps:
|
||||
*
|
||||
* - Setup App array in Configure.
|
||||
* - Include app/Config/core.php.
|
||||
* - Configure core cache configurations.
|
||||
* - Load App cache files.
|
||||
* - Include app/Config/bootstrap.php.
|
||||
* - Setup error/exception handlers.
|
||||
*
|
||||
* @param bool $boot Whether to do bootstrapping.
|
||||
* @return void
|
||||
*/
|
||||
public static function bootstrap($boot = true) {
|
||||
if ($boot) {
|
||||
self::_appDefaults();
|
||||
|
||||
if (!include APP . 'Config' . DS . 'core.php') {
|
||||
trigger_error(__d('cake_dev',
|
||||
"Can't find application core file. Please create %s, and make sure it is readable by PHP.",
|
||||
APP . 'Config' . DS . 'core.php'),
|
||||
E_USER_ERROR
|
||||
);
|
||||
}
|
||||
App::init();
|
||||
App::$bootstrapping = false;
|
||||
App::build();
|
||||
|
||||
$exception = array(
|
||||
'handler' => 'ErrorHandler::handleException',
|
||||
);
|
||||
$error = array(
|
||||
'handler' => 'ErrorHandler::handleError',
|
||||
'level' => E_ALL & ~E_DEPRECATED,
|
||||
);
|
||||
self::_setErrorHandlers($error, $exception);
|
||||
|
||||
if (!include APP . 'Config' . DS . 'bootstrap.php') {
|
||||
trigger_error(__d('cake_dev',
|
||||
"Can't find application bootstrap file. Please create %s, and make sure it is readable by PHP.",
|
||||
APP . 'Config' . DS . 'bootstrap.php'),
|
||||
E_USER_ERROR
|
||||
);
|
||||
}
|
||||
restore_error_handler();
|
||||
|
||||
self::_setErrorHandlers(
|
||||
self::$_values['Error'],
|
||||
self::$_values['Exception']
|
||||
);
|
||||
|
||||
// Preload Debugger + String in case of E_STRICT errors when loading files.
|
||||
if (self::$_values['debug'] > 0) {
|
||||
class_exists('Debugger');
|
||||
class_exists('String');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set app's default configs
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected static function _appDefaults() {
|
||||
self::write('App', (array)self::read('App') + array(
|
||||
'base' => false,
|
||||
'baseUrl' => false,
|
||||
'dir' => APP_DIR,
|
||||
'webroot' => WEBROOT_DIR,
|
||||
'www_root' => WWW_ROOT
|
||||
));
|
||||
}
|
||||
|
||||
/**
|
||||
* Used to store a dynamic variable in Configure.
|
||||
*
|
||||
* Usage:
|
||||
* {{{
|
||||
* Configure::write('One.key1', 'value of the Configure::One[key1]');
|
||||
* Configure::write(array('One.key1' => 'value of the Configure::One[key1]'));
|
||||
* Configure::write('One', array(
|
||||
* 'key1' => 'value of the Configure::One[key1]',
|
||||
* 'key2' => 'value of the Configure::One[key2]'
|
||||
* );
|
||||
*
|
||||
* Configure::write(array(
|
||||
* 'One.key1' => 'value of the Configure::One[key1]',
|
||||
* 'One.key2' => 'value of the Configure::One[key2]'
|
||||
* ));
|
||||
* }}}
|
||||
*
|
||||
* @param string|array $config The key to write, can be a dot notation value.
|
||||
* Alternatively can be an array containing key(s) and value(s).
|
||||
* @param mixed $value Value to set for var
|
||||
* @return bool True if write was successful
|
||||
* @link http://book.cakephp.org/2.0/en/development/configuration.html#Configure::write
|
||||
*/
|
||||
public static function write($config, $value = null) {
|
||||
if (!is_array($config)) {
|
||||
$config = array($config => $value);
|
||||
}
|
||||
|
||||
foreach ($config as $name => $value) {
|
||||
self::$_values = Hash::insert(self::$_values, $name, $value);
|
||||
}
|
||||
|
||||
if (isset($config['debug']) && function_exists('ini_set')) {
|
||||
if (self::$_values['debug']) {
|
||||
ini_set('display_errors', 1);
|
||||
} else {
|
||||
ini_set('display_errors', 0);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Used to read information stored in Configure. It's not
|
||||
* possible to store `null` values in Configure.
|
||||
*
|
||||
* Usage:
|
||||
* {{{
|
||||
* Configure::read('Name'); will return all values for Name
|
||||
* Configure::read('Name.key'); will return only the value of Configure::Name[key]
|
||||
* }}}
|
||||
*
|
||||
* @param string $var Variable to obtain. Use '.' to access array elements.
|
||||
* @return mixed value stored in configure, or null.
|
||||
* @link http://book.cakephp.org/2.0/en/development/configuration.html#Configure::read
|
||||
*/
|
||||
public static function read($var = null) {
|
||||
if ($var === null) {
|
||||
return self::$_values;
|
||||
}
|
||||
return Hash::get(self::$_values, $var);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if given variable is set in Configure.
|
||||
*
|
||||
* @param string $var Variable name to check for
|
||||
* @return bool True if variable is there
|
||||
*/
|
||||
public static function check($var = null) {
|
||||
if (empty($var)) {
|
||||
return false;
|
||||
}
|
||||
return Hash::get(self::$_values, $var) !== null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Used to delete a variable from Configure.
|
||||
*
|
||||
* Usage:
|
||||
* {{{
|
||||
* Configure::delete('Name'); will delete the entire Configure::Name
|
||||
* Configure::delete('Name.key'); will delete only the Configure::Name[key]
|
||||
* }}}
|
||||
*
|
||||
* @param string $var the var to be deleted
|
||||
* @return void
|
||||
* @link http://book.cakephp.org/2.0/en/development/configuration.html#Configure::delete
|
||||
*/
|
||||
public static function delete($var = null) {
|
||||
self::$_values = Hash::remove(self::$_values, $var);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a new reader to Configure. Readers allow you to read configuration
|
||||
* files in various formats/storage locations. CakePHP comes with two built-in readers
|
||||
* PhpReader and IniReader. You can also implement your own reader classes in your application.
|
||||
*
|
||||
* To add a new reader to Configure:
|
||||
*
|
||||
* `Configure::config('ini', new IniReader());`
|
||||
*
|
||||
* @param string $name The name of the reader being configured. This alias is used later to
|
||||
* read values from a specific reader.
|
||||
* @param ConfigReaderInterface $reader The reader to append.
|
||||
* @return void
|
||||
*/
|
||||
public static function config($name, ConfigReaderInterface $reader) {
|
||||
self::$_readers[$name] = $reader;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the names of the configured reader objects.
|
||||
*
|
||||
* @param string $name Name to check. If null returns all configured reader names.
|
||||
* @return array Array of the configured reader objects.
|
||||
*/
|
||||
public static function configured($name = null) {
|
||||
if ($name) {
|
||||
return isset(self::$_readers[$name]);
|
||||
}
|
||||
return array_keys(self::$_readers);
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove a configured reader. This will unset the reader
|
||||
* and make any future attempts to use it cause an Exception.
|
||||
*
|
||||
* @param string $name Name of the reader to drop.
|
||||
* @return bool Success
|
||||
*/
|
||||
public static function drop($name) {
|
||||
if (!isset(self::$_readers[$name])) {
|
||||
return false;
|
||||
}
|
||||
unset(self::$_readers[$name]);
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads stored configuration information from a resource. You can add
|
||||
* config file resource readers with `Configure::config()`.
|
||||
*
|
||||
* Loaded configuration information will be merged with the current
|
||||
* runtime configuration. You can load configuration files from plugins
|
||||
* by preceding the filename with the plugin name.
|
||||
*
|
||||
* `Configure::load('Users.user', 'default')`
|
||||
*
|
||||
* Would load the 'user' config file using the default config reader. You can load
|
||||
* app config files by giving the name of the resource you want loaded.
|
||||
*
|
||||
* `Configure::load('setup', 'default');`
|
||||
*
|
||||
* If using `default` config and no reader has been configured for it yet,
|
||||
* one will be automatically created using PhpReader
|
||||
*
|
||||
* @param string $key name of configuration resource to load.
|
||||
* @param string $config Name of the configured reader to use to read the resource identified by $key.
|
||||
* @param bool $merge if config files should be merged instead of simply overridden
|
||||
* @return bool False if file not found, true if load successful.
|
||||
* @throws ConfigureException Will throw any exceptions the reader raises.
|
||||
* @link http://book.cakephp.org/2.0/en/development/configuration.html#Configure::load
|
||||
*/
|
||||
public static function load($key, $config = 'default', $merge = true) {
|
||||
$reader = self::_getReader($config);
|
||||
if (!$reader) {
|
||||
return false;
|
||||
}
|
||||
$values = $reader->read($key);
|
||||
|
||||
if ($merge) {
|
||||
$keys = array_keys($values);
|
||||
foreach ($keys as $key) {
|
||||
if (($c = self::read($key)) && is_array($values[$key]) && is_array($c)) {
|
||||
$values[$key] = Hash::merge($c, $values[$key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return self::write($values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Dump data currently in Configure into $key. The serialization format
|
||||
* is decided by the config reader attached as $config. For example, if the
|
||||
* 'default' adapter is a PhpReader, the generated file will be a PHP
|
||||
* configuration file loadable by the PhpReader.
|
||||
*
|
||||
* ## Usage
|
||||
*
|
||||
* Given that the 'default' reader is an instance of PhpReader.
|
||||
* Save all data in Configure to the file `my_config.php`:
|
||||
*
|
||||
* `Configure::dump('my_config.php', 'default');`
|
||||
*
|
||||
* Save only the error handling configuration:
|
||||
*
|
||||
* `Configure::dump('error.php', 'default', array('Error', 'Exception');`
|
||||
*
|
||||
* @param string $key The identifier to create in the config adapter.
|
||||
* This could be a filename or a cache key depending on the adapter being used.
|
||||
* @param string $config The name of the configured adapter to dump data with.
|
||||
* @param array $keys The name of the top-level keys you want to dump.
|
||||
* This allows you save only some data stored in Configure.
|
||||
* @return bool success
|
||||
* @throws ConfigureException if the adapter does not implement a `dump` method.
|
||||
*/
|
||||
public static function dump($key, $config = 'default', $keys = array()) {
|
||||
$reader = self::_getReader($config);
|
||||
if (!$reader) {
|
||||
throw new ConfigureException(__d('cake_dev', 'There is no "%s" adapter.', $config));
|
||||
}
|
||||
if (!method_exists($reader, 'dump')) {
|
||||
throw new ConfigureException(__d('cake_dev', 'The "%s" adapter, does not have a %s method.', $config, 'dump()'));
|
||||
}
|
||||
$values = self::$_values;
|
||||
if (!empty($keys) && is_array($keys)) {
|
||||
$values = array_intersect_key($values, array_flip($keys));
|
||||
}
|
||||
return (bool)$reader->dump($key, $values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the configured reader. Internally used by `Configure::load()` and `Configure::dump()`
|
||||
* Will create new PhpReader for default if not configured yet.
|
||||
*
|
||||
* @param string $config The name of the configured adapter
|
||||
* @return mixed Reader instance or false
|
||||
*/
|
||||
protected static function _getReader($config) {
|
||||
if (!isset(self::$_readers[$config])) {
|
||||
if ($config !== 'default') {
|
||||
return false;
|
||||
}
|
||||
App::uses('PhpReader', 'Configure');
|
||||
self::config($config, new PhpReader());
|
||||
}
|
||||
return self::$_readers[$config];
|
||||
}
|
||||
|
||||
/**
|
||||
* Used to determine the current version of CakePHP.
|
||||
*
|
||||
* Usage `Configure::version();`
|
||||
*
|
||||
* @return string Current version of CakePHP
|
||||
*/
|
||||
public static function version() {
|
||||
if (!isset(self::$_values['Cake']['version'])) {
|
||||
require CAKE . 'Config' . DS . 'config.php';
|
||||
self::write($config);
|
||||
}
|
||||
return self::$_values['Cake']['version'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Used to write runtime configuration into Cache. Stored runtime configuration can be
|
||||
* restored using `Configure::restore()`. These methods can be used to enable configuration managers
|
||||
* frontends, or other GUI type interfaces for configuration.
|
||||
*
|
||||
* @param string $name The storage name for the saved configuration.
|
||||
* @param string $cacheConfig The cache configuration to save into. Defaults to 'default'
|
||||
* @param array $data Either an array of data to store, or leave empty to store all values.
|
||||
* @return bool Success
|
||||
*/
|
||||
public static function store($name, $cacheConfig = 'default', $data = null) {
|
||||
if ($data === null) {
|
||||
$data = self::$_values;
|
||||
}
|
||||
return Cache::write($name, $data, $cacheConfig);
|
||||
}
|
||||
|
||||
/**
|
||||
* Restores configuration data stored in the Cache into configure. Restored
|
||||
* values will overwrite existing ones.
|
||||
*
|
||||
* @param string $name Name of the stored config file to load.
|
||||
* @param string $cacheConfig Name of the Cache configuration to read from.
|
||||
* @return bool Success.
|
||||
*/
|
||||
public static function restore($name, $cacheConfig = 'default') {
|
||||
$values = Cache::read($name, $cacheConfig);
|
||||
if ($values) {
|
||||
return self::write($values);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear all values stored in Configure.
|
||||
*
|
||||
* @return bool success.
|
||||
*/
|
||||
public static function clear() {
|
||||
self::$_values = array();
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the error and exception handlers.
|
||||
*
|
||||
* @param array $error The Error handling configuration.
|
||||
* @param array $exception The exception handling configuration.
|
||||
* @return void
|
||||
*/
|
||||
protected static function _setErrorHandlers($error, $exception) {
|
||||
$level = -1;
|
||||
if (isset($error['level'])) {
|
||||
error_reporting($error['level']);
|
||||
$level = $error['level'];
|
||||
}
|
||||
if (!empty($error['handler'])) {
|
||||
set_error_handler($error['handler'], $level);
|
||||
}
|
||||
if (!empty($exception['handler'])) {
|
||||
set_exception_handler($exception['handler']);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
215
lib/Cake/Core/Object.php
Normal file
215
lib/Cake/Core/Object.php
Normal file
|
@ -0,0 +1,215 @@
|
|||
<?php
|
||||
/**
|
||||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||||
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
* @link http://cakephp.org CakePHP(tm) Project
|
||||
* @package Cake.Core
|
||||
* @since CakePHP(tm) v 0.2.9
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
App::uses('CakeLog', 'Log');
|
||||
App::uses('Dispatcher', 'Routing');
|
||||
App::uses('Router', 'Routing');
|
||||
App::uses('Set', 'Utility');
|
||||
App::uses('CakeLog', 'Log');
|
||||
|
||||
/**
|
||||
* Object class provides a few generic methods used in several subclasses.
|
||||
*
|
||||
* Also includes methods for logging and the special method RequestAction,
|
||||
* to call other Controllers' Actions from anywhere.
|
||||
*
|
||||
* @package Cake.Core
|
||||
*/
|
||||
class Object {
|
||||
|
||||
/**
|
||||
* Constructor, no-op
|
||||
*
|
||||
*/
|
||||
public function __construct() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Object-to-string conversion.
|
||||
* Each class can override this method as necessary.
|
||||
*
|
||||
* @return string The name of this class
|
||||
*/
|
||||
public function toString() {
|
||||
$class = get_class($this);
|
||||
return $class;
|
||||
}
|
||||
|
||||
/**
|
||||
* Calls a controller's method from any location. Can be used to connect controllers together
|
||||
* or tie plugins into a main application. requestAction can be used to return rendered views
|
||||
* or fetch the return value from controller actions.
|
||||
*
|
||||
* Under the hood this method uses Router::reverse() to convert the $url parameter into a string
|
||||
* URL. You should use URL formats that are compatible with Router::reverse()
|
||||
*
|
||||
* #### Passing POST and GET data
|
||||
*
|
||||
* POST and GET data can be simulated in requestAction. Use `$extra['url']` for
|
||||
* GET data. The `$extra['data']` parameter allows POST data simulation.
|
||||
*
|
||||
* @param string|array $url String or array-based URL. Unlike other URL arrays in CakePHP, this
|
||||
* URL will not automatically handle passed and named arguments in the $url parameter.
|
||||
* @param array $extra if array includes the key "return" it sets the AutoRender to true. Can
|
||||
* also be used to submit GET/POST data, and named/passed arguments.
|
||||
* @return mixed Boolean true or false on success/failure, or contents
|
||||
* of rendered action if 'return' is set in $extra.
|
||||
*/
|
||||
public function requestAction($url, $extra = array()) {
|
||||
if (empty($url)) {
|
||||
return false;
|
||||
}
|
||||
if (($index = array_search('return', $extra)) !== false) {
|
||||
$extra['return'] = 0;
|
||||
$extra['autoRender'] = 1;
|
||||
unset($extra[$index]);
|
||||
}
|
||||
$arrayUrl = is_array($url);
|
||||
if ($arrayUrl && !isset($extra['url'])) {
|
||||
$extra['url'] = array();
|
||||
}
|
||||
if ($arrayUrl && !isset($extra['data'])) {
|
||||
$extra['data'] = array();
|
||||
}
|
||||
$extra += array('autoRender' => 0, 'return' => 1, 'bare' => 1, 'requested' => 1);
|
||||
$data = isset($extra['data']) ? $extra['data'] : null;
|
||||
unset($extra['data']);
|
||||
|
||||
if (is_string($url) && strpos($url, Router::fullBaseUrl()) === 0) {
|
||||
$url = Router::normalize(str_replace(Router::fullBaseUrl(), '', $url));
|
||||
}
|
||||
if (is_string($url)) {
|
||||
$request = new CakeRequest($url);
|
||||
} elseif (is_array($url)) {
|
||||
$params = $url + array('pass' => array(), 'named' => array(), 'base' => false);
|
||||
$params = $extra + $params;
|
||||
$request = new CakeRequest(Router::reverse($params));
|
||||
}
|
||||
if (isset($data)) {
|
||||
$request->data = $data;
|
||||
}
|
||||
|
||||
$dispatcher = new Dispatcher();
|
||||
$result = $dispatcher->dispatch($request, new CakeResponse(), $extra);
|
||||
Router::popRequest();
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Calls a method on this object with the given parameters. Provides an OO wrapper
|
||||
* for `call_user_func_array`
|
||||
*
|
||||
* @param string $method Name of the method to call
|
||||
* @param array $params Parameter list to use when calling $method
|
||||
* @return mixed Returns the result of the method call
|
||||
*/
|
||||
public function dispatchMethod($method, $params = array()) {
|
||||
switch (count($params)) {
|
||||
case 0:
|
||||
return $this->{$method}();
|
||||
case 1:
|
||||
return $this->{$method}($params[0]);
|
||||
case 2:
|
||||
return $this->{$method}($params[0], $params[1]);
|
||||
case 3:
|
||||
return $this->{$method}($params[0], $params[1], $params[2]);
|
||||
case 4:
|
||||
return $this->{$method}($params[0], $params[1], $params[2], $params[3]);
|
||||
case 5:
|
||||
return $this->{$method}($params[0], $params[1], $params[2], $params[3], $params[4]);
|
||||
default:
|
||||
return call_user_func_array(array(&$this, $method), $params);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Stop execution of the current script. Wraps exit() making
|
||||
* testing easier.
|
||||
*
|
||||
* @param int|string $status see http://php.net/exit for values
|
||||
* @return void
|
||||
*/
|
||||
protected function _stop($status = 0) {
|
||||
exit($status);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience method to write a message to CakeLog. See CakeLog::write()
|
||||
* for more information on writing to logs.
|
||||
*
|
||||
* @param string $msg Log message
|
||||
* @param int $type Error type constant. Defined in app/Config/core.php.
|
||||
* @param null|string|array $scope The scope(s) a log message is being created in.
|
||||
* See CakeLog::config() for more information on logging scopes.
|
||||
* @return bool Success of log write
|
||||
*/
|
||||
public function log($msg, $type = LOG_ERR, $scope = null) {
|
||||
if (!is_string($msg)) {
|
||||
$msg = print_r($msg, true);
|
||||
}
|
||||
|
||||
return CakeLog::write($type, $msg, $scope);
|
||||
}
|
||||
|
||||
/**
|
||||
* Allows setting of multiple properties of the object in a single line of code. Will only set
|
||||
* properties that are part of a class declaration.
|
||||
*
|
||||
* @param array $properties An associative array containing properties and corresponding values.
|
||||
* @return void
|
||||
*/
|
||||
protected function _set($properties = array()) {
|
||||
if (is_array($properties) && !empty($properties)) {
|
||||
$vars = get_object_vars($this);
|
||||
foreach ($properties as $key => $val) {
|
||||
if (array_key_exists($key, $vars)) {
|
||||
$this->{$key} = $val;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Merges this objects $property with the property in $class' definition.
|
||||
* This classes value for the property will be merged on top of $class'
|
||||
*
|
||||
* This provides some of the DRY magic CakePHP provides. If you want to shut it off, redefine
|
||||
* this method as an empty function.
|
||||
*
|
||||
* @param array $properties The name of the properties to merge.
|
||||
* @param string $class The class to merge the property with.
|
||||
* @param bool $normalize Set to true to run the properties through Hash::normalize() before merging.
|
||||
* @return void
|
||||
*/
|
||||
protected function _mergeVars($properties, $class, $normalize = true) {
|
||||
$classProperties = get_class_vars($class);
|
||||
foreach ($properties as $var) {
|
||||
if (
|
||||
isset($classProperties[$var]) &&
|
||||
!empty($classProperties[$var]) &&
|
||||
is_array($this->{$var}) &&
|
||||
$this->{$var} != $classProperties[$var]
|
||||
) {
|
||||
if ($normalize) {
|
||||
$classProperties[$var] = Hash::normalize($classProperties[$var]);
|
||||
$this->{$var} = Hash::normalize($this->{$var});
|
||||
}
|
||||
$this->{$var} = Hash::merge($classProperties[$var], $this->{$var});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue