$_loaded
$_loaded : array<mixed,object>
Map of loaded objects.
A registry object for connection instances.
Provides registry & factory functionality for object types. Used as a super class for various composition based re-use features in CakePHP.
Each subclass needs to implement the various abstract methods to complete the template method load().
The ObjectRegistry is EventManager aware, but each extending class will need to use \Cake\Event\EventDispatcherTrait to attach and detach on set and bind
load(string $objectName, array $config = array()) : mixed
Loads/constructs an object instance.
Will return the instance in the registry if it already exists.
If a subclass provides event support, you can use $config['enabled'] = false
to exclude constructed objects from being registered for events.
Using Cake\Controller\Controller::$components as an example. You can alias an object by setting the 'className' key, i.e.,
public $components = [
'Email' => [
'className' => '\App\Controller\Component\AliasedEmailComponent'
];
];
All calls to the Email
component would use AliasedEmail
instead.
string | $objectName | The name/class of the object to load. |
array | $config | Additional settings to use when loading the object. |
If the class cannot be found.
set(string $objectName, object $object) : $this
Set an object directly into the registry by name.
If this collection implements events, the passed object will be attached into the event manager
string | $objectName | The name of the object to set in the registry. |
object | $object | instance to store in the registry |
_checkDuplicate(string $name, array $config) : void
Check for duplicate object loading.
If a duplicate is being loaded and has different configuration, that is bad and an exception will be raised.
An exception is raised, as replacing the object will not update any references other objects may have. Additionally, simply updating the runtime configuration is not a good option as we may be missing important constructor logic dependent on the configuration.
string | $name | The name of the alias in the registry. |
array | $config | The config data for the new instance. |
When a duplicate is found.
_throwMissingClassError(string $class, string $plugin) : void
Throws an exception when a datasource is missing
Part of the template method for Cake\Core\ObjectRegistry::load()
string | $class | The classname that is missing. |
string | $plugin | The plugin the datasource is missing in. |
_create(string|object|callable $class, string $alias, array $settings) : object
Create the connection object with the correct settings.
Part of the template method for Cake\Core\ObjectRegistry::load()
If a callable is passed as first argument, The returned value of this function will be the result of the callable.
string|object|callable | $class | The classname or object to make. |
string | $alias | The alias of the object. |
array | $settings | An array of settings to use for the datasource. |
A connection with the correct settings.
Loading…