You are here

protected function StringDatabaseStorage::dbStringInsert in Drupal 9

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

Creates a database record for a string object.

Parameters

\Drupal\locale\StringInterface $string: The string object.

Return value

bool|int If the operation failed, returns FALSE. If it succeeded returns the last insert ID of the query, if one exists.

Throws

\Drupal\locale\StringStorageException If the string is not suitable for this storage, an exception is thrown.

1 call to StringDatabaseStorage::dbStringInsert()
StringDatabaseStorage::save in core/modules/locale/src/StringDatabaseStorage.php
Save string object to storage.

File

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

Class

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

Namespace

Drupal\locale

Code

protected function dbStringInsert($string) {
  if ($string
    ->isSource()) {
    $string
      ->setValues([
      'context' => '',
      'version' => 'none',
    ], FALSE);
    $fields = $string
      ->getValues([
      'source',
      'context',
      'version',
    ]);
  }
  elseif ($string
    ->isTranslation()) {
    $string
      ->setValues([
      'customized' => 0,
    ], FALSE);
    $fields = $string
      ->getValues([
      'lid',
      'language',
      'translation',
      'customized',
    ]);
  }
  if (!empty($fields)) {
    return $this->connection
      ->insert($this
      ->dbStringTable($string), $this->options)
      ->fields($fields)
      ->execute();
  }
  else {
    throw new StringStorageException('The string cannot be saved: ' . $string
      ->getString());
  }
}