You are here

function insight_page_report in Insight 7

Menu callback: content administration.

1 string reference to 'insight_page_report'
insight_menu in ./insight.module
Implements hook.().

File

./insight.page_reports.inc, line 7

Code

function insight_page_report($form, $form_state) {
  drupal_add_css(drupal_get_path('module', 'insight') . '/insight.admin.css');
  $form['filter'] = insight_page_report_filter_form();
  $form['#submit'][] = 'insight_page_report_filter_form_submit';
  $form['admin'] = insight_page_report_pages();
  return $form;
}