protected function 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

array Array of objects of the class requested.

2 calls to StringDatabaseStorage::dbStringLoad()

File

drupal/core/modules/locale/lib/Drupal/locale/StringDatabaseStorage.php, line 322
Definition of Drupal\locale\StringDatabaseStorage.

Class

StringDatabaseStorage
Defines the locale string class.

Namespace

Drupal\locale

Code

protected function dbStringLoad(array $conditions, array $options, $class) {
  $strings = array();
  $result = $this
    ->dbStringSelect($conditions, $options)
    ->execute();
  foreach ($result as $item) {
    $string = new $class($item);
    $string
      ->setStorage($this);
    $strings[] = $string;
  }
  return $strings;
}