A registry object for connection instances.
Cake\Datasource\ConnectionManager
_create( string|object|callable $class , string $alias , array $settings )
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.
$class
$alias
$settings
_resolveClassName( string $class )
Resolve a datasource classname.
Part of the template method for Cake\Core\ObjectRegistry::load()
$class
_throwMissingClassError( string $class , string $plugin )
Throws an exception when a datasource is missing
Part of the template method for Cake\Core\ObjectRegistry::load()
$class
$plugin
Cake\Datasource\Exception\MissingDatasourceException
unload( string $name )
Remove a single adapter from the registry.
$name
Cake\Core\ObjectRegistry::unload()
__get( string $name )
Provide public read access to the loaded objects
$name
__isset( string $name )
Provide isset access to _loaded
$name
_checkDuplicate( string $name , array $config )
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.
$name
$config
get( string $name )
Get loaded object instance.
$name
has( string $name )
Check whether or not a given object is loaded.
$name
load( string $objectName , array $config [] )
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.
$objectName
$config
optional [] normalizeArray( array $objects )
Normalizes an object array, creates an array that makes lazy loading easier
$objects
reset( )
Clear loaded instances in the registry.
If the registry subclass has an event manager, the objects will be detached from events as well.
set( string $objectName , object $object )
Set an object directly into the registry by name.
If this collection implements events, the passed object will be attached into the event manager
$objectName
$object
© 2005–2017 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/3.4/class-Cake.Datasource.ConnectionRegistry.html