You are here

public function StringStorageInterface::findTranslation in Localization update 7.2

Loads a string translation object, fast query.

This function must only be used when actually translating strings as it will have the effect of updating the string version. For other purposes the getTranslations() method should be used instead.

Parameters

array $conditions: (optional) Array with conditions that will be used to filter the strings returned and may include all of the conditions defined by getStrings().

Return value

\TranslationString|null Minimal TranslationString object if found, NULL otherwise.

1 method overrides StringStorageInterface::findTranslation()
StringDatabaseStorage::findTranslation in includes/locale/StringDatabaseStorage.php
Implements StringStorageInterface::findTranslation().

File

includes/locale/StringStorageInterface.php, line 82
Contains \StringStorageInterface.

Class

StringStorageInterface
Defines the locale string storage interface.

Code

public function findTranslation(array $conditions);