You are here

function clock_theme in Clock 7.2

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

Implements hook_theme.

File

./clock.module, line 214
Display clocks on your site.

Code

function clock_theme() {
  return array(
    // @see clock_element_info()
    'clock_option' => array(
      'render element' => 'element',
    ),
    // @see clock_element_info_alter()
    'clock_select' => array(
      'render element' => 'element',
    ),
    'clocks' => array(
      'variables' => array(
        'clocks' => array(),
      ),
      'file' => 'clock.theme.inc',
    ),
    'clock' => array(
      'variables' => array(
        'clock' => new StdClass(),
      ),
      'file' => 'clock.theme.inc',
    ),
    'clock_daylight_savings_time_marker' => array(
      'variables' => array(),
      'file' => 'clock.theme.inc',
    ),
  );
}