This documentation is for developers that want to implement their own captcha challenge and integrate it with the base captcha module. === Required: hook_captcha($op, $captcha_type='') === The hook_captcha() hook is the only required function if you want to integrate with the base captcha module. Functionality depends on the first argument $op: * 'list': you should return an array of possible captcha type names that your module implements. * 'generate': generate a captcha challenge. You should return an array that offers form elements and the solution of your captcha challenge, defined by the second argument $captcha_type. The returned array $captcha should have the following items: $captcha['solution']: this is the solution of your captcha challenge $captcha['form']: an array of the form elements you want to add to the form. There should be a key 'captcha_response' in this array, which points to the form element where the user enters his answer. Let's give a simple example to make this more clear. We create the captcha challenge 'Foo captcha', which requires the user to enter "foo" in a textfield. """ /** * Implementation of hook_captcha(). */ function foo_captcha_captcha($op, $captcha_type='') { switch($op) { case 'list': return array("Foo captcha"); case 'generate': if ($captcha_type == "Foo captcha") { $captcha = array(); $captcha['solution'] = 'foo'; $captcha['form']['captcha_response'] = array ( '#type' => 'textfield', '#title' => t('Enter "foo"'), ); return $captcha; } break; } } """ Validation of the answer against the solution and other stuff is done by the base captcha module. === Required: the .info file === You should specify that your module depends on the base captcha module. Optionally you could put your module in the "Spam control" package. For our simple foo captcha module this would mean the following lines in the file foo_captcha.info: """ name = "Foo captcha" description = "The foo captcha requires the user to enter the word 'foo'." package = "Spam control" dependencies = captcha """ === Recommended: hook_menu($may_cache) === More advanced captcha modules probably want some configuration page. To integrate nicely with the captcha module you should offer your configuration page as a MENU_LOCAL_TASK menu entry under 'admin/user/captcha/'. For our simple foo captcha module this would mean: """ /** * Implementation of hook_menu(). */ function foo_captcha_menu($may_cache) { $items = array(); if ($may_cache) { $items[] = array( 'path' => 'admin/user/captcha/foo_captcha', 'title' => t('Foo captcha'), 'callback' => 'drupal_get_form', 'callback arguments' => array('foo_captcha_settings_form'), 'type' => MENU_LOCAL_TASK, ); } return $items; } """ You should of course implement a function foo_captcha_settings_form() which returns the form of your configuration page. === Optional: hook_help($section) === To offer a description/explanation of your captcha challenge, you can use the normal hook_help() system. For our simple foo captcha module this would mean: """ /** * Implementation of hook_help(). */ function foo_captcha_help($section) { switch ($section) { case 'admin/user/captcha/foo_captcha': return '
' . t('This is a very simple captcha, which requires users to enter "foo" in a textfield.') . '
'; } return $output; } """ === Optional: preprocess the response === In some situations it could be necessary to preprocess the response before letting the captcha module validate it. For example: if you want the validation to be case insensitive, you could convert the reponse to lower case. To enable response preprocessing: * Add a non zero 'preprocess' entry to $captcha in the 'generate' part of hook_captcha(). E.g.: """ function foo_captcha_captcha($op, $captcha_type='') { switch($op) { ... case 'generate': if ($captcha_type == "Foo captcha") { ... $captcha['preprocess'] = TRUE, ... """ * Add a 'preprocess' operation to hook_captcha() and add a $response argument to the function signature. E.g.: """ function foo_captcha_captcha($op, $captcha_type='', $response='') { switch($op) { ... case 'preprocess': if ($captcha_type == "Foo captcha") { return strtolower($response); } break; ... """