You are here

function copyright_block_block_1_content in Copyright Block module 6

Displays the copyright statement.

1 call to copyright_block_block_1_content()
copyright_block_block in ./copyright_block.module
Implementation of hook_block().

File

./copyright_block.module, line 91
Creates a dynamic customisable copyright message block.

Code

function copyright_block_block_1_content() {
  return token_replace(variable_get('copyright_block_message', t('Copyright © [copyright-block-dates], [site-name].')));
}