Liste de tous les membres
Description détaillée
Définition à la ligne 23 du fichier range.php.
Documentation des fonctions membres
JFormFieldRange::getInput |
( |
| ) |
|
|
protected |
Method to get the field input markup.
- Renvoie:
- string The field input markup.
- Depuis:
- 3.2
Réimplémentée à partir de JFormFieldNumber.
Définition à la ligne 40 du fichier range.php.
{
$max = !empty($this->max) ?
' max="' . $this->max .
'"' :
'';
$min = !empty($this->min) ?
' min="' . $this->min .
'"' :
'';
$step = !empty($this->step) ?
' step="' . $this->step .
'"' :
'';
$class = !empty($this->
class) ?
' class="' . $this->
class . '"' : '';
$readonly = $this->readonly ? ' readonly' : '';
$disabled = $this->disabled ? ' disabled' : '';
$autofocus = $this->autofocus ? ' autofocus' : '';
$value = (float) $this->value;
$onchange = !empty($this->onchange) ? ' onchange="' . $this->onchange . '"' : '';
JHtml::_('jquery.framework');
JHtml::_('script', 'system/html5fallback.js', false, true);
return '<input type="range" name="' . $this->name . '" id="' . $this->id . '"' . ' value="'
}
Documentation des données membres
JFormFieldRange::$type = 'Range' |
|
protected |
La documentation de cette classe a été générée à partir du fichier suivant :