You are here

function system_update_8002 in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/system.install \system_update_8002()

Removes the system.filter configuration.

File

core/modules/system/system.install, line 1294
Install, update and uninstall functions for the system module.

Code

function system_update_8002() {
  \Drupal::configFactory()
    ->getEditable('system.filter')
    ->delete();
  return t('The system.filter configuration has been moved to a container parameter, see default.services.yml for more information.');
}