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 JFormFieldNumber
+ Graphe d'héritage de JFormFieldNumber:
+ Graphe de collaboration de JFormFieldNumber:

Liste de tous les membres

Fonctions membres publiques

 __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 ()

Fonctions membres protégées

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

Attributs protégés

 $type = 'Number'
 $max = 0
 $min = 0
 $step = 0
- 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

- Attributs publics inherited from JFormField
 $repeat = false
- Attributs protégés statiques inherited from JFormField
static $count = 0
static $generated_fieldname = '__field'

Description détaillée

Définition à la ligne 21 du fichier number.php.


Documentation des fonctions membres

JFormFieldNumber::__get (   $name)

Method to get certain otherwise inaccessible properties from the form field object.

Paramètres:
string$nameThe property name for which to the the value.
Renvoie:
mixed The property value or null.
Depuis:
3.2

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

Réimplémentée dans JFormFieldMeter.

Définition à la ligne 64 du fichier number.php.

{
switch ($name)
{
case 'max':
case 'min':
case 'step':
return $this->$name;
}
}
JFormFieldNumber::__set (   $name,
  $value 
)

Method to set certain otherwise inaccessible properties of the form field object.

Paramètres:
string$nameThe property name for which to the the value.
mixed$valueThe value of the property.
Renvoie:
void
Depuis:
3.2

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

Réimplémentée dans JFormFieldMeter.

Définition à la ligne 87 du fichier number.php.

{
switch ($name)
{
case 'step':
case 'min':
case 'max':
$this->$name = (float) $value;
break;
default:
}
}
JFormFieldNumber::getInput ( )
protected

Method to get the field input markup.

Renvoie:
string The field input markup.
Depuis:
3.2

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

Réimplémentée dans JFormFieldMeter, et JFormFieldRange.

Définition à la ligne 137 du fichier number.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 . '"' : '';
$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' : '';
$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' : '';
$value = (float) $this->value;
$value = empty($value) ? $this->min : $value;
// Initialize JavaScript field attributes.
$onchange = !empty($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="number" name="' . $this->name . '" id="' . $this->id . '"' . ' value="'
. htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '"' . $class . $size . $disabled . $readonly
}

+ Voici le graphe d'appel pour cette fonction :

JFormFieldNumber::setup ( SimpleXMLElement  $element,
  $value,
  $group = null 
)

Method to attach a JForm object to the field.

Paramètres:
SimpleXMLElement$elementThe SimpleXMLElement object representing the <field> tag for the form field object.
mixed$valueThe form field value to validate.
string$groupThe field name group control value. This acts as as an array container for the field. For example if the field has name="foo" and the group value is set to "bar" then the full field name would end up being "bar[foo]".
Renvoie:
boolean True on success.
Voir également:
JFormField::setup()
Depuis:
3.2

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

Réimplémentée dans JFormFieldMeter.

Définition à la ligne 116 du fichier number.php.

{
if ($return)
{
$this->max = isset($this->element['max']) ? (float) $this->element['max'] : 100;
$this->min = isset($this->element['min']) ? (float) $this->element['min'] : 0;
$this->step = isset($this->element['step']) ? (float) $this->element['step'] : 1;
}
return $return;
}

Documentation des données membres

JFormFieldNumber::$max = 0
protected

Définition à la ligne 37 du fichier number.php.

JFormFieldNumber::$min = 0
protected

Définition à la ligne 45 du fichier number.php.

JFormFieldNumber::$step = 0
protected

Définition à la ligne 53 du fichier number.php.

JFormFieldNumber::$type = 'Number'
protected

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

Réimplémentée dans JFormFieldMeter, et JFormFieldRange.

Définition à la ligne 29 du fichier number.php.


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