You are here

function tracking_code_admin_overview in Tracking Code 7

Page callback for tracking code admin page (admin/structure/tracking_code).

Return value

array the themed output for the admin overview page

1 string reference to 'tracking_code_admin_overview'
tracking_code_menu in ./tracking_code.module
Implements hook_menu().

File

./tracking_code.admin.inc, line 14
admin page callbacks and form handlers for the tracking code module

Code

function tracking_code_admin_overview() {
  drupal_add_css(drupal_get_path('module', 'tracking_code') . '/css/tracking_code.css');

  //make sure we have the ajax library
  drupal_add_library('system', 'drupal.ajax');
  $output = drupal_get_form('tracking_code_overview_form');
  return $output;
}