You are here

allow_iframed_site.install in Allow site iframing 3.0.x

Same filename and directory in other branches
  1. 8 allow_iframed_site.install

File

allow_iframed_site.install
View source
<?php

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

Functions