Joomla CMS
4.2.2
Documentation des API du CMS Joomla en version 4.2.2
|
Fonctions membres publiques | |
get (string $id) | |
has (string $id) | |
Describes the interface of a container that exposes methods to read its entries.
get | ( | string | $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 | ( | string | $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. |