You are here

public function StringMongoDBStorage::getStrings in MongoDB 8

Loads multiple source string objects.

Parameters

array $conditions: (optional) Array with conditions that will be used to filter the strings returned and may include any of the following elements:

  • Any simple field value indexed by field name.
  • 'translated', TRUE to get only translated strings or FALSE to get only untranslated strings. If not set it returns both translated and untranslated strings that fit the other conditions.

Defaults to no conditions which means that it will load all strings.

array $options: (optional) An associative array of additional options. It may contain any of the following optional keys:

  • 'filters': Array of string filters indexed by field name.
  • 'pager limit': Use pager and set this limit value.

Return value

array Array of \Drupal\locale\StringInterface objects matching the conditions.

Overrides StringStorageInterface::getStrings

File

mongodb_locale/src/StringStorage.php, line 43

Class

StringMongoDBStorage

Namespace

Drupal\mongodb_locale

Code

public function getStrings(array $conditions = array(), array $options = array()) {
  $strings = array();
  foreach ($this->mongo
    ->get('locale')
    ->find($this
    ->getFilterFindArray($conditions, $options)) as $record) {
    $string = new SourceString($record);
    $string
      ->setStorage($this);
    $strings[] = $string;
  }
  return $strings;
}