| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | 
Honeypot Module Readme----------------------Installation------------To install this module, place it in your sites/all/modules folder and enable iton the modules page.Configuration-------------All settings for this module are on the Honeypot configuration page, under theConfiguration section, in the Content authoring settings. You can visit theconfiguration page directly at admin/config/content/honeypot.Note that, when testing Honeypot on your website, make sure you're not logged inas an administrative user or user 1; Honeypot allows administrative users tobypass Honeypot protection, so by default, Honeypot will not be added to formsaccessed by site administrators.Use in Your Own Forms---------------------If you want to add honeypot to your own forms, or to any form through your ownmodule's hook_form_alter's, you can simply place the following function callinside your form builder function (or inside a hook_form_alter):honeypot_add_form_protection($form, $form_state, array('honeypot', 'time_restriction'));Note that you can enable or disable either the honeypot field, or the timerestriction on the form by including or not including the option in the array.Credit------The Honeypot module was originally developed by Jeff Geerling of Midwestern Mac,LLC (midwesternmac.com), and sponsored by flockNote (flocknote.com).
 |