You are here

protected function StringDatabaseStorage::dbStringLoad in Zircon Profile 8.0

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

Loads multiple string objects.

Parameters

array $conditions: Any of the conditions used by dbStringSelect().

array $options: Any of the options used by dbStringSelect().

string $class: Class name to use for fetching returned objects.

Return value

\Drupal\locale\StringInterface[] Array of objects of the class requested.

2 calls to StringDatabaseStorage::dbStringLoad()
StringDatabaseStorage::getStrings in core/modules/locale/src/StringDatabaseStorage.php
Loads multiple source string objects.
StringDatabaseStorage::getTranslations in core/modules/locale/src/StringDatabaseStorage.php
Loads multiple string translation objects.

File

core/modules/locale/src/StringDatabaseStorage.php, line 324
Contains \Drupal\locale\StringDatabaseStorage.

Class

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

Namespace

Drupal\locale

Code

protected function dbStringLoad(array $conditions, array $options, $class) {
  $strings = array();
  $result = $this
    ->dbStringSelect($conditions, $options)
    ->execute();
  foreach ($result as $item) {

    /** @var \Drupal\locale\StringInterface $string */
    $string = new $class($item);
    $string
      ->setStorage($this);
    $strings[] = $string;
  }
  return $strings;
}