You are here

function countdown_theme in Countdown 7

Same name and namespace in other branches
  1. 8 countdown.module \countdown_theme()
  2. 6 countdown.module \countdown_theme()

Implement hook_theme().

Theme function for similar block

File

./countdown.module, line 157
Count to, or from, a specified date and display the output in a block

Code

function countdown_theme() {
  return array(
    'countdown' => array(
      'template' => 'countdown',
    ),
  );
}