You are here

function better_statistics_menu in Better Statistics 7

Implements hook_menu().

File

./better_statistics.module, line 33
Drupal hook implementations for the Better Statistics module.

Code

function better_statistics_menu() {
  $items['statistics/ajax/%'] = array(
    'title' => 'Statistics AJAX handler',
    'page callback' => 'better_statistics_ajax_handler',
    'file' => 'better_statistics.ajax.inc',
    'page arguments' => array(
      2,
    ),
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  return $items;
}