StringDatabaseStorage::getStrings

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

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

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

Class

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

Namespace

Drupal\locale

Code

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

Please login to continue.