1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
<?php
/* SVN FILE: $Id: component.php 7296 2008-06-27 09:09:03Z gwoo $ */
/**
*
* PHP versions 4 and 5
*
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
* Copyright 2005-2008, Cake Software Foundation, Inc.
* 1785 E. Sahara Avenue, Suite 490-204
* Las Vegas, Nevada 89104
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
* @package cake
* @subpackage cake.cake.libs.controller
* @since CakePHP(tm) v TBD
* @version $Revision: 7296 $
* @modifiedby $LastChangedBy: gwoo $
* @lastmodified $Date: 2008-06-27 02:09:03 -0700 (Fri, 27 Jun 2008) $
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
/**
* Handler for Controller::$components
*
* @package cake
* @subpackage cake.cake.libs.controller
*/
class Component extends Object {
/**
* Some vars from controller (plugin, name, base)
*
* @var object
* @access private
*/
var $__controllerVars = array('plugin' => null, 'name' => null, 'base' => null);
/**
* All loaded components
*
* @var object
* @access private
*/
var $__loaded = array();
/**
* Settings for loaded components.
*
* @var array
* @access private
**/
var $__settings = array();
/**
* Used to initialize the components for current controller
*
* @param object $controller Controller with components to load
* @access public
*/
function init(&$controller) {
if ($controller->components !== false && is_array($controller->components)) {
$this->__controllerVars = array(
'plugin' => $controller->plugin, 'name' => $controller->name, 'base' => $controller->base
);
if (!in_array('Session', $controller->components)) {
array_unshift($controller->components, 'Session');
}
$this->_loadComponents($controller);
}
}
/**
* Called before the Controller::beforeFilter()
*
* @param object $controller Controller with components to initialize
* @access public
*/
function initialize(&$controller) {
foreach (array_keys($this->__loaded) as $name) {
$component =& $this->__loaded[$name];
if (method_exists($component,'initialize') && $component->enabled === true) {
$settings = array();
if (isset($this->__settings[$name])) {
$settings = $this->__settings[$name];
}
$component->initialize($controller, $settings);
}
}
}
/**
* Called after the Controller::beforeFilter() and before the controller action
*
* @param object $controller Controller with components to startup
* @access public
*/
function startup(&$controller) {
foreach (array_keys($this->__loaded) as $name) {
$component =& $this->__loaded[$name];
if (method_exists($component,'startup') && $component->enabled === true) {
$component->startup($controller);
}
}
}
/**
* Called after the Controller::beforeRender(), after the view class is loaded, and before the Controller::render()
*
* @param object $controller Controller with components to beforeRender
* @access public
*/
function beforeRender(&$controller) {
foreach (array_keys($this->__loaded) as $name) {
$component =& $this->__loaded[$name];
if (method_exists($component,'beforeRender') && $component->enabled === true) {
$component->beforeRender($controller);
}
}
}
/**
* Called before Controller::redirect();
*
* @param object $controller Controller with components to beforeRedirect
* @access public
*/
function beforeRedirect(&$controller, $url, $status = null, $exit = true) {
$response = array();
foreach (array_keys($this->__loaded) as $name) {
$component =& $this->__loaded[$name];
if (method_exists($component,'beforeRedirect') && $component->enabled === true) {
$resp = $component->beforeRedirect($controller, $url, $status, $exit);
if ($resp === false) {
return false;
}
$response[] = $resp;
}
}
return $response;
}
/**
* Called after Controller::render() and before the output is printed to the browser
*
* @param object $controller Controller with components to shutdown
* @access public
*/
function shutdown(&$controller) {
foreach (array_keys($this->__loaded) as $name) {
$component =& $this->__loaded[$name];
if (method_exists($component,'shutdown') && $component->enabled === true) {
$component->shutdown($controller);
}
}
}
/**
* Load components used by this component.
*
* @param object $object Object with a Components array
* @param object $parent the parent of the current object
* @return void
* @access protected
*/
function _loadComponents(&$object, $parent = null) {
$components = $object->components;
$base = $this->__controllerVars['base'];
if (is_array($object->components)) {
$normal = Set::normalize($object->components);
foreach ($normal as $component => $config) {
$parts = preg_split('/\/|\./', $component);
if (count($parts) === 1) {
$plugin = $this->__controllerVars['plugin'] . '.';
} else {
$plugin = Inflector::underscore($parts['0']) . '.';
$component = array_pop($parts);
}
$componentCn = $component . 'Component';
if (!class_exists($componentCn)) {
if (is_null($plugin) || !App::import('Component', $plugin . $component)) {
if (!App::import('Component', $component)) {
$this->cakeError('missingComponentFile', array(array(
'className' => $this->__controllerVars['name'],
'component' => $component,
'file' => Inflector::underscore($component) . '.php',
'base' => $base,
'code' => 500
)));
return false;
}
}
if (!class_exists($componentCn)) {
$this->cakeError('missingComponentClass', array(array(
'className' => $this->__controllerVars['name'],
'component' => $component,
'file' => Inflector::underscore($component) . '.php',
'base' => $base,
'code' => 500
)));
return false;
}
}
if (isset($this->__loaded[$component])) {
$object->{$component} =& $this->__loaded[$component];
if (!empty($config) && isset($this->__settings[$component])) {
$this->__settings[$component] = array_merge($this->__settings[$component], $config);
} elseif (!empty($config)) {
$this->__settings[$component] = $config;
}
} else {
if ($componentCn == 'SessionComponent') {
$object->{$component} =& new $componentCn($base);
} else {
$object->{$component} =& new $componentCn();
}
$object->{$component}->enabled = true;
$this->__loaded[$component] =& $object->{$component};
if (!empty($config)) {
$this->__settings[$component] = $config;
}
}
if (isset($object->{$component}->components) && is_array($object->{$component}->components) && (!isset($object->{$component}->{$parent}))) {
$this->_loadComponents($object->{$component}, $component);
}
}
}
}
}
?>
|