2005-10-09 01:56:21 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
|
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
2005-10-09 01:56:21 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-05-26 05:29:17 +00:00
|
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-10-09 01:56:21 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-10-09 01:56:21 +00:00
|
|
|
*
|
2005-12-27 03:33:44 +00:00
|
|
|
* @filesource
|
2006-05-26 05:29:17 +00:00
|
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.controller
|
|
|
|
* @since CakePHP v TBD
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-10-09 01:56:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.controller
|
2005-10-09 01:56:21 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
class Component extends Object{
|
2005-10-09 01:56:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
* @var unknown_type
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $components = array();
|
2005-12-27 03:33:44 +00:00
|
|
|
|
2005-10-09 01:56:21 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
* @var unknown_type
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $controller = null;
|
2005-10-09 01:56:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @return Component
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function Component(&$controller) {
|
|
|
|
$this->controller=&$controller;
|
|
|
|
|
|
|
|
if ($this->controller->components !== false) {
|
|
|
|
$loaded=array();
|
|
|
|
$loaded=$this->_loadComponents($loaded, $this->controller->components);
|
|
|
|
|
|
|
|
foreach(array_keys($loaded)as $component) {
|
|
|
|
$tempComponent = &$loaded[$component];
|
|
|
|
|
|
|
|
if (isset($tempComponent->components) && is_array($tempComponent->components)) {
|
|
|
|
foreach($tempComponent->components as $subComponent) {
|
|
|
|
$this->controller->{$component}->{$subComponent}= &$loaded[$subComponent];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-10-09 01:56:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
* @param unknown_type $loaded
|
|
|
|
* @param unknown_type $components
|
|
|
|
* @return unknown
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function &_loadComponents(&$loaded, $components) {
|
|
|
|
foreach($components as $component) {
|
|
|
|
if (in_array($component, array_keys($loaded)) !== true) {
|
|
|
|
$componentFn=Inflector::underscore($component) . '.php';
|
|
|
|
|
|
|
|
if (file_exists(
|
|
|
|
APP . 'plugins' . DS . $this->controller->plugin . DS . 'controllers' . DS . 'components' . DS . $componentFn)) {
|
|
|
|
$componentFn = APP . 'plugins' . DS . $this->controller->plugin . DS . 'controllers' . DS
|
|
|
|
. 'components' . DS . $componentFn;
|
|
|
|
} else if(file_exists(COMPONENTS . $componentFn)) {
|
|
|
|
$componentFn = COMPONENTS . $componentFn;
|
|
|
|
} else if($componentFn
|
|
|
|
= fileExistsInPath(LIBS . 'controller' . DS . 'components' . DS . $componentFn)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
$componentCn=$component . 'Component';
|
2005-10-09 01:56:21 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
if (is_file($componentFn)) {
|
|
|
|
if (!class_exists($componentCn)) {
|
|
|
|
require_once $componentFn;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (class_exists($componentCn) === true) {
|
|
|
|
if ($componentCn == 'SessionComponent') {
|
|
|
|
$param = $this->controller->base . '/';
|
|
|
|
} else {
|
|
|
|
$param = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->controller->{$component}=&new $componentCn($param);
|
|
|
|
$loaded[$component] =&$this->controller->{$component};
|
|
|
|
|
|
|
|
if (isset($this->controller->{$component}->components)
|
|
|
|
&& is_array($this->controller->{$component}->components)) {
|
|
|
|
$loaded = &$this->_loadComponents($loaded,
|
|
|
|
$this->controller->{$component}->components);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return $this->cakeError('missingComponentClass',
|
|
|
|
array(array('className' => $this->controller->name,
|
|
|
|
'component' => $component,
|
|
|
|
'file' => $componentFn,
|
|
|
|
'base' => $this->controller->base)));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return $this->cakeError('missingComponentFile',
|
|
|
|
array(array('className' => $this->controller->name,
|
|
|
|
'component' => $component,
|
|
|
|
'file' => $componentFn,
|
|
|
|
'base' => $this->controller->base)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $loaded;
|
|
|
|
}
|
|
|
|
}
|
2005-10-09 01:56:21 +00:00
|
|
|
?>
|