You are here

function jquery_countdown_date_theme in jQuery Countdown 6

Implementation of hook_theme();

File

jquery_countdown_date/jquery_countdown_date.module, line 39
provides a jquery.countdown formatter for "date" field and settings in the date widget

Code

function jquery_countdown_date_theme() {
  $items = array();
  $items['jquery_countdown_date_formatter_jquery_countdown_default'] = array(
    'arguments' => array(
      'element' => NULL,
    ),
    'file' => 'jquery_countdown_date.formatter.inc',
  );
  return $items;
}