You are here

copyright_block.install in Copyright Block module 7

Install file for "Copyright block".

File

copyright_block.install
View source
<?php

/**
 * @file
 * Install file for "Copyright block".
 */

/**
 * Implements hook_uninstall().
 */
function copyright_block_uninstall() {
  variable_del('copyright_block_inceptionyear');
  variable_del('copyright_block_copyrightholder');
  variable_del('copyright_block_template');
  variable_del('copyright_block_spacertemplate');
  db_delete('block')
    ->condition('module', 'copyright_block')
    ->condition('delta', 'copyright')
    ->execute();
}

Functions

Namesort descending Description
copyright_block_uninstall Implements hook_uninstall().