You are here

function allow_iframed_site_uninstall in Allow site iframing 3.0.x

Same name and namespace in other branches
  1. 8 allow_iframed_site.install \allow_iframed_site_uninstall()

Implements hook_uninstall().

File

./allow_iframed_site.install, line 6

Code

function allow_iframed_site_uninstall() {
  $config = \Drupal::configFactory()
    ->getEditable('allow_iframed_site.settings');
  $config
    ->delete();
  $logger = \Drupal::logger('allow_iframed_site');
}