You are here

function insight_page_alerts_page in Insight 7

Menu callback: content administration.

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

File

./insight.page_alerts.inc, line 5

Code

function insight_page_alerts_page($form, $form_state, $include = 'active') {
  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_alerts($include);
  return $form;
}