You are here

function ga_push_menu in GA Push 7

Implements hook_menu().

File

./ga_push.module, line 66
Drupal Module: GA Push.

Code

function ga_push_menu() {
  $items['admin/config/system/ga-push'] = array(
    'title' => 'Ga push',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'ga_push_settings_form',
    ),
    'access arguments' => array(
      'admin ga push',
    ),
    'description' => 'Global configuration of ga push.',
    'file' => 'inc/ga_push.admin.inc',
  );
  $items['admin/config/system/ga-push/settings'] = array(
    'title' => 'Ga push',
    'type' => MENU_DEFAULT_LOCAL_TASK,
  );
  return $items;
}