Function __global->form_input_username
Definitions
sources/form_templates.php
- Get the Tempcode for a username input line.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: object
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $pretty_name | mixed | No | No | required parameter | N/A | N/A | A human intelligible name for this input field, provided in plain-text format (string or Tempcode) |
| $description | mixed | No | No | required parameter | N/A | N/A | A description for this input field, provided in HTML format (string or Tempcode) |
| $name | ID_TEXT | No | No | required parameter | N/A | N/A | The name which this input field is for |
| $default | ?string | No | No | required parameter | N/A | N/A | The default value for this input field (null: blank) |
| $required | boolean | No | No | required parameter | N/A | N/A | Whether this is a required input field |
| $needs_match | boolean | No | No | True | N/A | N/A | Whether it is required than a valid username is given |
| $tabindex | ?integer | No | No | Null | N/A | N/A | The tab index of the field (null: not specified) |
| $autocomplete | ~?mixed | No | No | Null | N/A | N/A | The autocomplete field name. (false: explicitly disable autocomplete) (null: no autocomplete attribute unless there's a default for this $name) |
Returns
- The input field
- Type: Tempcode
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Get the Tempcode for a username input line.
*
* @param mixed $pretty_name A human intelligible name for this input field, provided in plain-text format (string or Tempcode)
* @param mixed $description A description for this input field, provided in HTML format (string or Tempcode)
* @param ID_TEXT $name The name which this input field is for
* @param ?string $default The default value for this input field (null: blank)
* @param boolean $required Whether this is a required input field
* @param boolean $needs_match Whether it is required than a valid username is given
* @param ?integer $tabindex The tab index of the field (null: not specified)
* @param ~?mixed $autocomplete The autocomplete field name. (false: explicitly disable autocomplete) (null: no autocomplete attribute unless there's a default for this $name)
* @return Tempcode The input field
*/
function form_input_username($pretty_name, $description, string $name, ?string $default, bool $required, bool $needs_match = true, ?int $tabindex = null, $autocomplete = null) : object
* Get the Tempcode for a username input line.
*
* @param mixed $pretty_name A human intelligible name for this input field, provided in plain-text format (string or Tempcode)
* @param mixed $description A description for this input field, provided in HTML format (string or Tempcode)
* @param ID_TEXT $name The name which this input field is for
* @param ?string $default The default value for this input field (null: blank)
* @param boolean $required Whether this is a required input field
* @param boolean $needs_match Whether it is required than a valid username is given
* @param ?integer $tabindex The tab index of the field (null: not specified)
* @param ~?mixed $autocomplete The autocomplete field name. (false: explicitly disable autocomplete) (null: no autocomplete attribute unless there's a default for this $name)
* @return Tempcode The input field
*/
function form_input_username($pretty_name, $description, string $name, ?string $default, bool $required, bool $needs_match = true, ?int $tabindex = null, $autocomplete = null) : object

