Function __global->form_input_captcha
Definitions
sources/captcha.php
- Get a CAPTCHA (aka security code) form field.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: object
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $hidden | Tempcode | No | No | required parameter | N/A | N/A | Hidden fields (will attach to here for non-visible CAPTCHA systems) |
Returns
- The field
- Type: Tempcode
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Get a CAPTCHA (aka security code) form field.
*
* @param Tempcode $hidden Hidden fields (will attach to here for non-visible CAPTCHA systems)
* @return Tempcode The field
*/
function form_input_captcha(object $hidden) : object
* Get a CAPTCHA (aka security code) form field.
*
* @param Tempcode $hidden Hidden fields (will attach to here for non-visible CAPTCHA systems)
* @return Tempcode The field
*/
function form_input_captcha(object $hidden) : object

