mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
c899c085f5
Revision: [2448] removing tabs in last commit Revision: [2447] Adding fix for limit in all associations Revision: [2446] Added fix for Ticket #569 Revision: [2443] Adding fix for Ticket #592. Revision: [2437] Adding fix for Model::findNeighbours(). Was returning all associations and fields. Now recursive is set to 0 and only returns the prev and next keys array Example $this->Category->findNeighbours(null, 'Category.id', 4); Will return, Array ( [prev] => Array ( [Category] => Array ( [id] => 3 ) ) [next] => Array ( [Category] => Array ( [id] => 5 ) ) ) Revision: [2432] Removed the DS constant from the plugin var when it is set in Dispatcher. Added "$this->plugin.DS." constant in files where needed after change above. Added fix for Ticket #577. Revision: [2428] Added fix for HtmlHelper::checkbox() it ignored the value provided as a parameter Fix for Ticket #605. Fix for Ticket #607. git-svn-id: https://svn.cakephp.org/repo/trunk/cake@2449 3807eeeb-6ff5-0310-8944-8be069107fe0
154 lines
No EOL
4.8 KiB
PHP
154 lines
No EOL
4.8 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
*
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
* Copyright (c) 2006, 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 (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
|
|
*/
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @package cake
|
|
* @subpackage cake.cake.libs.controller
|
|
* @since CakePHP v TBD
|
|
*/
|
|
class Component extends Object
|
|
{
|
|
|
|
/**
|
|
* Enter description here...
|
|
*
|
|
* @var unknown_type
|
|
*/
|
|
var $components = array();
|
|
|
|
/**
|
|
* Enter description here...
|
|
*
|
|
* @var unknown_type
|
|
*/
|
|
var $controller = null;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @return Component
|
|
*/
|
|
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];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Enter description here...
|
|
*
|
|
* @param unknown_type $loaded
|
|
* @param unknown_type $components
|
|
* @return unknown
|
|
*/
|
|
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';
|
|
|
|
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)));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return $this->cakeError('missingComponentFile',
|
|
array(array('className' => $this->controller->name,
|
|
'component' => $component,
|
|
'file' => $componentFn)));
|
|
}
|
|
}
|
|
}
|
|
return $loaded;
|
|
}
|
|
}
|
|
|
|
?>
|