You are here

function jquery_countdown_theme in jQuery Countdown 7

Same name and namespace in other branches
  1. 6 jquery_countdown.module \jquery_countdown_theme()
  2. 7.2 jquery_countdown.module \jquery_countdown_theme()

Implementation of hook_theme().

File

./jquery_countdown.module, line 237

Code

function jquery_countdown_theme($existing, $type, $theme, $path) {
  return array(
    'jquery_countdown' => array(
      'variables' => array(
        'options' => NULL,
        'id' => NULL,
        'content' => NULL,
      ),
    ),
  );
}