Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JFormFieldTel
+ Graphe d'héritage de JFormFieldTel:
+ Graphe de collaboration de JFormFieldTel:

Liste de tous les membres

Fonctions membres protégées

 getInput ()
- Fonctions membres protégées inherited from JFormFieldText
 getSuggestions ()
- Fonctions membres protégées inherited from JFormField
 getId ($fieldId, $fieldName)
 getTitle ()
 getLabel ()
 getName ($fieldName)
 getFieldName ($fieldName)

Attributs protégés

 $type = 'Tel'
- Attributs protégés inherited from JFormFieldText
 $maxLength
 $inputmode
 $dirname
- Attributs protégés inherited from JFormField
 $description
 $hint
 $autocomplete = 'on'
 $spellcheck = true
 $autofocus = false
 $element
 $form
 $formControl
 $hidden = false
 $translateLabel = true
 $translateDescription = true
 $translateHint = true
 $id
 $input
 $label
 $multiple = false
 $pattern
 $name
 $fieldname
 $group
 $required = false
 $disabled = false
 $readonly = false
 $validate
 $value
 $default
 $size
 $class
 $labelClass
 $onchange
 $onclick

Additional Inherited Members

- Fonctions membres publiques inherited from JFormFieldText
 __get ($name)
 __set ($name, $value)
 setup (SimpleXMLElement $element, $value, $group=null)
- Fonctions membres publiques inherited from JFormField
 __construct ($form=null)
 setForm (JForm $form)
 setValue ($value)
 getAttribute ($name, $default=null)
 getControlGroup ()

Description détaillée

Définition à la ligne 25 du fichier tel.php.


Documentation des fonctions membres

JFormFieldTel::getInput ( )
protected

Method to get the field input markup.

Renvoie:
string The field input markup.
Depuis:
3.2

Réimplémentée à partir de JFormFieldText.

Définition à la ligne 42 du fichier tel.php.

Références JText\_().

{
// Translate placeholder text
$hint = $this->translateHint ? JText::_($this->hint) : $this->hint;
// Initialize some field attributes.
$size = !empty($this->size) ? ' size="' . $this->size . '"' : '';
$maxLength = !empty($this->maxLength) ? ' maxlength="' . $this->maxLength . '"' : '';
$class = !empty($this->class) ? ' class="' . $this->class . '"' : '';
$readonly = $this->readonly ? ' readonly' : '';
$disabled = $this->disabled ? ' disabled' : '';
$required = $this->required ? ' required aria-required="true"' : '';
$hint = $hint ? ' placeholder="' . $hint . '"' : '';
$autocomplete = !$this->autocomplete ? ' autocomplete="off"' : ' autocomplete="' . $this->autocomplete . '"';
$autocomplete = $autocomplete == ' autocomplete="on"' ? '' : $autocomplete;
$autofocus = $this->autofocus ? ' autofocus' : '';
$spellcheck = $this->spellcheck ? '' : ' spellcheck="false"';
// Initialize JavaScript field attributes.
$onchange = $this->onchange ? ' onchange="' . $this->onchange . '"' : '';
// Including fallback code for HTML5 non supported browsers.
JHtml::_('jquery.framework');
JHtml::_('script', 'system/html5fallback.js', false, true);
return '<input type="tel" name="' . $this->name . '"' . $class . ' id="' . $this->id . '" value="'
. htmlspecialchars($this->value, ENT_COMPAT, 'UTF-8') . '"' . $size . $disabled . $readonly
}

+ Voici le graphe d'appel pour cette fonction :


Documentation des données membres

JFormFieldTel::$type = 'Tel'
protected

Réimplémentée à partir de JFormFieldText.

Définition à la ligne 33 du fichier tel.php.


La documentation de cette classe a été générée à partir du fichier suivant :