function NodeStorage::clearRevisionsLanguage
Unsets the language for all nodes with the given language.
Parameters
\Drupal\Core\Language\LanguageInterface $language: The language object.
Overrides NodeStorageInterface::clearRevisionsLanguage
File
- 
              core/modules/ node/ src/ NodeStorage.php, line 57 
Class
- NodeStorage
- Defines the storage handler class for nodes.
Namespace
Drupal\nodeCode
public function clearRevisionsLanguage(LanguageInterface $language) {
  return $this->database
    ->update($this->getRevisionTable())
    ->fields([
    'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
  ])
    ->condition('langcode', $language->getId())
    ->execute();
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
