You are here

function jquery_countdown_menu in jQuery Countdown 6

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

Implementation of hook_menu() provides the ajax callback for serversync option

File

./jquery_countdown.module, line 16
provides the jquery_countdown theme function and serversync callback

Code

function jquery_countdown_menu() {
  $items = array();
  $items['jquery_countdown/serversync'] = array(
    'title' => 'jquery_countdown server time',
    'page callback' => 'jquery_countdown_serversync',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  return $items;
}