Skip to content

Instantly share code, notes, and snippets.

@fredysan
Last active January 22, 2020 18:40
Show Gist options
  • Save fredysan/9d00768c3c307e0f0305af1f1095eb28 to your computer and use it in GitHub Desktop.
Save fredysan/9d00768c3c307e0f0305af1f1095eb28 to your computer and use it in GitHub Desktop.
Remove Drupal Settings Programmatically
<?php
/**
* @file
* Remove Drupal 8 Settings.
*/
\Drupal::configFactory()->getEditable('automated_cron.settings')->delete();
// Or.
\Drupal::service('config.factory')->getEditable('automated_cron.settings')->delete();
// ====
// Drush.
// ====
// drush config - delete "contact.form.personal".
// ====
// Drupal console.
// ====
// drupal config:delete active "contact.form.personal".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment