You are here

function spam_admin_filter_overview in Spam 6

Same name and namespace in other branches
  1. 5.3 spam.module \spam_admin_filter_overview()

Spam filter overview page. Allows enabling/disabling, ordering, and tuning of individual filters.

1 string reference to 'spam_admin_filter_overview'
spam_menu in ./spam.module
Drupal _menu() hook.

File

./spam.module, line 683
Spam module, v3 Copyright(c) 2006-2008 Jeremy Andrews <jeremy@tag1consulting.com>. All rights reserved.

Code

function spam_admin_filter_overview() {

  // Install any new filters that may have become available.
  spam_init_filters();
  $output = drupal_get_form('spam_admin_filters');
  return $output;
}