Joomla CMS
3.10.11 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.10.11 et du framework Joomla Platform intégré
|
Fonctions membres publiques | |
get ($id) | |
has ($id) | |
Describes the interface of a container that exposes methods to read its entries.
get | ( | $id | ) |
Finds an entry of the container by its identifier and returns it.
string | $id | Identifier of the entry to look for. |
NotFoundExceptionInterface | No entry was found for this identifier. |
ContainerExceptionInterface | Error while retrieving the entry. |
has | ( | $id | ) |
Returns true if the container can return an entry for the given identifier. Returns false otherwise.
has($id)
returning true does not mean that get($id)
will not throw an exception. It does however mean that get($id)
will not throw a NotFoundExceptionInterface
.
string | $id | Identifier of the entry to look for. |
Implémenté dans Container.