You are here

public function StringDatabaseStorage::getTranslations in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/locale/src/StringDatabaseStorage.php \Drupal\locale\StringDatabaseStorage::getTranslations()
  2. 9 core/modules/locale/src/StringDatabaseStorage.php \Drupal\locale\StringDatabaseStorage::getTranslations()

File

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

Class

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

Namespace

Drupal\locale

Code

public function getTranslations(array $conditions = [], array $options = []) {
  return $this
    ->dbStringLoad($conditions, [
    'translation' => TRUE,
  ] + $options, 'Drupal\\locale\\TranslationString');
}