class MessageCatalogue implements MessageCatalogueInterface, MetadataAwareInterface
MessageCatalogue.
Methods
|
__construct(string $locale, array $messages = array())
Constructor. |
||
| string |
getLocale()
Gets the catalogue locale. |
|
| array |
getDomains()
Gets the domains. |
|
| array |
all(string $domain = null)
Gets the messages within a given domain. |
|
|
set(string $id, string $translation, string $domain = 'messages')
Sets a message translation. |
||
| Boolean |
has(string $id, string $domain = 'messages')
Checks if a message has a translation. |
|
| Boolean |
defines(string $id, string $domain = 'messages')
Checks if a message has a translation (it does not take into account the fallback mechanism). |
|
| string |
get(string $id, string $domain = 'messages')
Gets a message translation. |
|
|
replace(array $messages, string $domain = 'messages')
Sets translations for a given domain. |
||
|
add(array $messages, string $domain = 'messages')
Adds translations for a given domain. |
||
|
addCatalogue(MessageCatalogueInterface $catalogue)
Merges translations from the given Catalogue into the current one. |
||
|
addFallbackCatalogue(MessageCatalogueInterface $catalogue)
Merges translations from the given Catalogue into the current one only when the translation does not exist. |
||
| MessageCatalogueInterface|null |
getFallbackCatalogue()
Gets the fallback catalogue. |
|
| ResourceInterface[] |
getResources()
Returns an array of resources loaded to build this collection. |
|
|
addResource(ResourceInterface $resource)
Adds a resource for this collection. |
||
| mixed |
getMetadata($key = '', $domain = 'messages')
Gets metadata for the given domain and key. |
|
|
setMetadata(string $key, mixed $value, string $domain = 'messages')
Adds metadata to a message domain. |
||
|
deleteMetadata($key = '', $domain = 'messages')
Deletes metadata for the given key and domain. |
Details
at line 40
public
__construct(string $locale, array $messages = array())
Constructor.
at line 51
public string
getLocale()
Gets the catalogue locale.
at line 61
public array
getDomains()
Gets the domains.
at line 71
public array
all(string $domain = null)
Gets the messages within a given domain.
If $domain is null, it returns all messages.
at line 85
public
set(string $id, string $translation, string $domain = 'messages')
Sets a message translation.
at line 95
public Boolean
has(string $id, string $domain = 'messages')
Checks if a message has a translation.
at line 111
public Boolean
defines(string $id, string $domain = 'messages')
Checks if a message has a translation (it does not take into account the fallback mechanism).
at line 121
public string
get(string $id, string $domain = 'messages')
Gets a message translation.
at line 139
public
replace(array $messages, string $domain = 'messages')
Sets translations for a given domain.
at line 151
public
add(array $messages, string $domain = 'messages')
Adds translations for a given domain.
at line 165
public
addCatalogue(MessageCatalogueInterface $catalogue)
Merges translations from the given Catalogue into the current one.
The two catalogues must have the same locale.
at line 190
public
addFallbackCatalogue(MessageCatalogueInterface $catalogue)
Merges translations from the given Catalogue into the current one only when the translation does not exist.
This is used to provide default translations when they do not exist for the current locale.
at line 213
public MessageCatalogueInterface|null
getFallbackCatalogue()
Gets the fallback catalogue.
at line 223
public ResourceInterface[]
getResources()
Returns an array of resources loaded to build this collection.
at line 233
public
addResource(ResourceInterface $resource)
Adds a resource for this collection.
at line 241
public mixed
getMetadata($key = '', $domain = 'messages')
Gets metadata for the given domain and key.
Passing an empty domain will return an array with all metadata indexed by
domain and then by key. Passing an empty key will return an array with all
metadata for the given domain.
at line 263
public
setMetadata(string $key, mixed $value, string $domain = 'messages')
Adds metadata to a message domain.
at line 271
public
deleteMetadata($key = '', $domain = 'messages')
Deletes metadata for the given key and domain.
Passing an empty domain will delete all metadata. Passing an empty key will
delete all metadata for the given domain.