StringDatabaseStorage::getTranslations

public StringDatabaseStorage::getTranslations(array $conditions = array(), array $options = array())

Loads multiple string translation objects.

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().

array $options: (optional) An associative array of additional options. It may contain any of the options defined by getStrings().

Return value

\Drupal\locale\StringInterface[] Array of \Drupal\locale\StringInterface objects matching the conditions.

Overrides StringStorageInterface::getTranslations

See also

\Drupal\locale\StringStorageInterface::getStrings()

File

core/modules/locale/src/StringDatabaseStorage.php, line 49

Class

StringDatabaseStorage
Defines a class to store localized strings in the database.

Namespace

Drupal\locale

Code

public function getTranslations(array $conditions = array(), array $options = array()) {
  return $this->dbStringLoad($conditions, array('translation' => TRUE) + $options, 'Drupal\locale\TranslationString');
}
doc_Drupal
2016-10-29 09:45:09
Comments
Leave a Comment

Please login to continue.