copyright_block.install in Copyright Block module 7
Same filename and directory in other branches
Install file for "Copyright block".
File
copyright_block.installView 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
| Name   | Description | 
|---|---|
| copyright_block_uninstall | Implements hook_uninstall(). | 
