CakePHP
  • Documentation
    • Book
    • API
    • Videos
    • Logos & Trademarks
  • Business Solutions
  • Swag
  • Road Trip
  • Team
  • Community
    • Community
    • Team
    • Issues (Github)
    • YouTube Channel
    • Get Involved
    • Bakery
    • Featured Resources
    • Newsletter
    • Certification
    • My CakePHP
    • CakeFest
    • Facebook
    • Twitter
    • Help & Support
    • Forum
    • Stack Overflow
    • IRC
    • Slack
    • Paid Support
CakePHP

C CakePHP 4.0 Strawberry API

  • Overview
  • Version:
    • 4.0
      • 4.0
      • 3.9
      • 3.8
      • 3.7
      • 3.6
      • 3.5
      • 3.4
      • 3.3
      • 3.2
      • 3.1
      • 3.0
      • 2.10
      • 2.9
      • 2.8
      • 2.7
      • 2.6
      • 2.5
      • 2.4
      • 2.3
      • 2.2
      • 2.1
      • 2.0
      • 1.3
      • 1.2

Namespaces

  • Cake
    • Auth
    • Cache
    • Collection
    • Command
    • Console
    • Controller
    • Core
    • Database
    • Datasource
    • Error
    • Event
    • Filesystem
    • Form
    • Http
    • I18n
    • Log
    • Mailer
    • Network
    • ORM
      • Association
      • Behavior
      • Exception
      • Locator
      • Rule
    • Routing
    • Shell
    • TestSuite
    • Utility
    • Validation
    • View

Interface LocatorInterface

Registries for Table objects should implement this interface.

Namespace: Cake\ORM\Locator

Method Summary

  • clear() public

    Clears the registry of configuration and instances.

  • exists() public

    Check to see if an instance exists in the registry.

  • get() public

    Get a table instance from the registry.

  • getConfig() public

    Returns configuration for an alias or the full configuration array for all aliases.

  • remove() public

    Removes an instance from the registry.

  • set() public

    Set an instance.

  • setConfig() public

    Stores a list of options to be used when instantiating an object with a matching alias.

Method Detail

clear() public

¶

clear()

Clears the registry of configuration and instances.

exists() public

¶

exists(string $alias)

Check to see if an instance exists in the registry.

Parameters
string $alias

The alias to check for.

Returns
bool

get() public

¶

get(string $alias, array $options)

Get a table instance from the registry.

Parameters
string $alias

The alias name you want to get.

array $options optional

The options you want to build the table with.

Returns
\Cake\ORM\Table

getConfig() public

¶

getConfig(?string $alias)

Returns configuration for an alias or the full configuration array for all aliases.

Parameters
string|null $alias optional

Alias to get config for, null for complete config.

Returns
array

The config data.

remove() public

¶

remove(string $alias)

Removes an instance from the registry.

Parameters
string $alias

The alias to remove.

set() public

¶

set(string $alias, \Cake\ORM\Table $object)

Set an instance.

Parameters
string $alias

The alias to set.

\Cake\ORM\Table $object

The table to set.

Returns
\Cake\ORM\Table

setConfig() public

¶

setConfig(mixed $alias, mixed $options)

Stores a list of options to be used when instantiating an object with a matching alias.

Parameters
string|array $alias

Name of the alias or array to completely overwrite current config.

array|null $options optional

list of options for the alias

Returns
$this
Throws
RuntimeException
When you attempt to configure an existing table instance.