You are here

function copyright_block_install in Copyright Block module 7.2

Implements hook_install().

File

./copyright_block.install, line 11
Install, update and uninstall functions for the Copyright Block module.

Code

function copyright_block_install() {

  // Add default copyright block content.
  variable_set('copyright_block_text', array(
    'value' => t('Copyright © [site:name], [copyright_statement:dates].'),
    'format' => 'full_html',
  ));
}