You are here

function twitter_profile_widget_uninstall in Twitter Profile Widget 8.2

Same name and namespace in other branches
  1. 8 twitter_profile_widget.install \twitter_profile_widget_uninstall()
  2. 6 twitter_profile_widget.install \twitter_profile_widget_uninstall()
  3. 7 twitter_profile_widget.install \twitter_profile_widget_uninstall()
  4. 3.x twitter_profile_widget.install \twitter_profile_widget_uninstall()

Implements hook_uninstall().

File

./twitter_profile_widget.install, line 13
Install file for twitter_profile_widget.

Code

function twitter_profile_widget_uninstall() {
  \Drupal::configFactory()
    ->getEditable('block_content.type.twitter_widget')
    ->delete();
  \Drupal::configFactory()
    ->getEditable('field.field.block_content.twitter_widget.field_twitter_profile_widget')
    ->delete();
  \Drupal::configFactory()
    ->getEditable('field.storage.block_content.field_twitter_profile_widget')
    ->delete();
  \Drupal::configFactory()
    ->getEditable('twitter_profile_widget.settings')
    ->delete();
}