1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /* vim: set expandtab tabstop=4 shiftwidth=4: */
- /**
- * Element for HTML_QuickForm to display a CAPTCHA "Word"
- *
- * The HTML_QuickForm_CAPTCHA package adds an element to the
- * HTML_QuickForm package to display a CAPTCHA "word".
- *
- * This package requires the use of a PHP session.
- *
- * PHP versions 4 and 5
- *
- * @category HTML
- * @package HTML_QuickForm_CAPTCHA
- * @author Philippe Jausions <Philippe.Jausions@11abacus.com>
- * @copyright 2006-2008 by Philippe Jausions / 11abacus
- * @license http://www.opensource.org/licenses/bsd-license.php New BSD
- * @version CVS: $Id: Word.php,v 1.1 2008/04/26 23:27:30 jausions Exp $
- * @link http://pear.php.net/package/HTML_QuickForm_CAPTCHA
- */
- /**
- * Element for HTML_QuickForm to display a CAPTCHA "word" question
- *
- * The HTML_QuickForm_CAPTCHA package adds an element to the
- * HTML_QuickForm package to display a CAPTCHA "word" question.
- *
- * Options for the element
- * <ul>
- * <li>'length' (integer) the length of the Word.</li>
- * <li>'mode' (string) 'single' for separated words.</li>
- * <li>'locale' (string) locale for Numbers_Words package</li>
- * <li>'sessionVar' (string) name of session variable containing
- * the Text_CAPTCHA instance (defaults to
- * _HTML_QuickForm_CAPTCHA.)</li>
- * </ul>
- *
- * This package requires the use of a PHP session.
- *
- * @category HTML
- * @package HTML_QuickForm_CAPTCHA
- * @author Philippe Jausions <Philippe.Jausions@11abacus.com>
- * @copyright 2006-2008 by Philippe Jausions / 11abacus
- * @license http://www.opensource.org/licenses/bsd-license.php New BSD
- * @version Release: 0.3.0
- * @link http://pear.php.net/package/HTML_QuickForm_CAPTCHA
- * @see Text_CAPTCHA_Driver_Equation
- */
- class HTML_QuickForm_CAPTCHA_Word extends HTML_QuickForm_CAPTCHA
- {
- /**
- * Default options
- *
- * @var array
- * @access protected
- */
- var $_options = array(
- 'sessionVar' => '_HTML_QuickForm_CAPTCHA',
- 'length' => 4,
- 'mode' => 'single',
- 'locale' => 'en_US',
- 'phrase' => null,
- );
- /**
- * CAPTCHA driver
- *
- * @var string
- * @access protected
- */
- var $_CAPTCHA_driver = 'Word';
- }
|