| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * @file
- * Provide the HTML output for the CAPTCHA image display.
- *
- * Available variables:
- * - $captcha_url: The CAPTCHA image to present based
- * - $audio_enabled: boolean indicates if audio CAPTCHAs are enabled
- * for this site.
- */
- $switch_verify = $audio_enabled ? t('Switch to audio verification.') : '';
- $instructions = t("Type the characters you see in the picture; if you can't read them, submit the form and a new image will be generated. Not case sensitive.");
- $image_alt_text = t('Type the characters you see in this picture.');
- $refresh_alt = t('Refresh');
- ?>
- <?php
- $refresh_image_output = theme('image', array(
- 'path' => drupal_get_path('module', 'mollom') . '/images/refresh.png',
- 'alt' => $refresh_alt,
- 'getsize' => FALSE,
- ));
- $captcha_output = theme('image', array('path' => $captcha_url, 'alt' => $image_alt_text, 'getsize' => FALSE));
- ?>
- <span class="mollom-captcha-container">
- <a href="javascript:void(0);" class="mollom-refresh-captcha mollom-refresh-image"><?php print $refresh_image_output; ?></a>
- <span class="mollom-captcha-content mollom-image-captcha"><?php print $captcha_output; ?></span>
- <span class="mollom-image-captcha-instructions"><?php print $instructions; ?><?php if ($audio_enabled) { ?> <a href="#" class="mollom-switch-captcha mollom-audio-captcha"><?php print $switch_verify; ?></a><?php } ?></span>
- </span>
|