function spam_admin_groups_form in Spam 5.3
Spam module groups form.
1 string reference to 'spam_admin_groups_form'
- spam_admin_filter_groups in ./
spam.module - Spam filter content-type groups page. Allows creation/deletion of content-type groups. Each content type can only be in one group. If a content-type is not specifically added to one of these groups, it is automatically part of the default group…
File
- ./
spam.module, line 758
Code
function spam_admin_groups_form() {
$form['groups'] = array(
'#type' => 'fieldset',
'#value' => t('Groups'),
);
return $form;
}