You are here

public function StringMongoDBStorage::findString in MongoDB 8

Loads a string source object, fast query.

These 'fast query' methods are the ones in the critical path and their implementation must be optimized for speed, as they may run many times in a single page request.

Parameters

array $conditions: (optional) Array with conditions that will be used to filter the strings returned and may include all of the conditions defined by getStrings().

Return value

\Drupal\locale\SourceString|null Minimal TranslationString object if found, NULL otherwise.

Overrides StringStorageInterface::findString

File

mongodb_locale/src/StringStorage.php, line 152

Class

StringMongoDBStorage

Namespace

Drupal\mongodb_locale

Code

public function findString(array $conditions) {
  $find = $this
    ->getFindArray($conditions);
  if ($values = $this->mongo
    ->get('locale')
    ->findOne($find, array(
    'source',
    'context',
    'version',
  ))) {
    $values['lid'] = (string) $values['_id'];
    unset($values['_id']);
    return (new SourceString($values))
      ->setStorage($this);
  }
}