public function StringDatabaseStorage::deleteTranslations

Implements Drupal\locale\StringStorageInterface::deleteLanguage().

Overrides StringStorageInterface::deleteTranslations

File

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

Class

StringDatabaseStorage
Defines the locale string class.

Namespace

Drupal\locale

Code

public function deleteTranslations($conditions) {
  $this
    ->dbDelete('locales_target', $conditions)
    ->execute();
}