You are here

function _botcha_default_form_ids in BOTCHA Spam Prevention 6

Same name and namespace in other branches
  1. 6.2 botcha.install \_botcha_default_form_ids()
  2. 6.3 botcha.install \_botcha_default_form_ids()
  3. 7 botcha.install \_botcha_default_form_ids()
  4. 7.2 botcha.install \_botcha_default_form_ids()
  5. 7.3 botcha.install \_botcha_default_form_ids()
2 calls to _botcha_default_form_ids()
botcha_install in ./botcha.install
Implementation of hook_install().
botcha_update_6001 in ./botcha.install
Implementation of hook_update_N() Create new 'botcha_points' table and fill it in with defaults

File

./botcha.install, line 74

Code

function _botcha_default_form_ids() {

  // Some default BOTCHA points.
  $form_ids = array(
    'user_pass',
    'user_login',
    'user_login_block',
    'user_register',
    'contact_mail_page',
    'contact_mail_user',
    'comment_form',
    'forum_node_form',
  );
  return $form_ids;
}