function ascii_art_captcha_menu in CAPTCHA Pack 5
Same name and namespace in other branches
- 6 ascii_art_captcha/ascii_art_captcha.module \ascii_art_captcha_menu()
- 7 ascii_art_captcha/ascii_art_captcha.module \ascii_art_captcha_menu()
Implementation of hook_menu().
File
- ascii_art_captcha/
ascii_art_captcha.module, line 19
Code
function ascii_art_captcha_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array(
'path' => 'admin/user/captcha/ascii_art_captcha',
'title' => t('ASCII art CAPTCHA'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'ascii_art_captcha_settings_form',
),
'type' => MENU_LOCAL_TASK,
);
}
return $items;
}