You are here

function clock_theme in Clock 6

Same name and namespace in other branches
  1. 7.2 clock.module \clock_theme()
  2. 7 clock.module \clock_theme()

Implements hook_theme.

File

./clock.module, line 188
Functions to manage the display of a clock.

Code

function clock_theme() {
  return array(
    'clock' => array(
      'arguments' => array(
        'timezone' => 'UTC',
        'date_format' => 'short',
        'js' => '1',
      ),
    ),
  );
}