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

Liste de tous les membres

Fonctions membres publiques

 __get ($name)
 __set ($name, $value)
 setup (SimpleXMLElement $element, $value, $group=null)

Attributs publics

 $type = 'SQL'

Fonctions membres protégées

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

Attributs protégés

 $keyField
 $valueField
 $translate = false
 $query
- Attributs protégés inherited from JFormFieldList
- 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

Description détaillée

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


Documentation des fonctions membres

JFormFieldSQL::__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.

Définition à la ligne 72 du fichier sql.php.

{
switch ($name)
{
case 'keyField':
case 'valueField':
case 'translate':
case 'query':
return $this->$name;
}
}
JFormFieldSQL::__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.

Définition à la ligne 96 du fichier sql.php.

{
switch ($name)
{
case 'keyField':
case 'valueField':
case 'translate':
case 'query':
$this->$name = (string) $value;
break;
default:
}
}
JFormFieldSQL::getOptions ( )
protected

Method to get the custom field options. Use the query attribute to supply a query to generate the list.

Renvoie:
array The field option objects.
Depuis:
11.1

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

Définition à la ligne 149 du fichier sql.php.

Références JText\_(), et JFactory\getDbo().

{
$options = array();
// Initialize some field attributes.
// Get the database object.
// Set the query and get the result list.
$db->setQuery($this->query);
$items = $db->loadObjectlist();
// Build the field options.
if (!empty($items))
{
foreach ($items as $item)
{
if ($this->translate == true)
{
$options[] = JHtml::_('select.option', $item->$key, JText::_($item->$value));
}
else
{
$options[] = JHtml::_('select.option', $item->$key, $item->$value);
}
}
}
// Merge any additional options in the XML definition.
$options = array_merge(parent::getOptions(), $options);
return $options;
}

+ Voici le graphe d'appel pour cette fonction :

JFormFieldSQL::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.

Définition à la ligne 126 du fichier sql.php.

{
if ($return)
{
$this->keyField = $this->element['key_field'] ? (string) $this->element['key_field'] : 'value';
$this->valueField = $this->element['value_field'] ? (string) $this->element['value_field'] : (string) $this->element['name'];
$this->translate = $this->element['translate'] ? (string) $this->element['translate'] : false;
$this->query = (string) $this->element['query'];
}
return $return;
}

Documentation des données membres

JFormFieldSQL::$keyField
protected

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

JFormFieldSQL::$query
protected

Définition à la ligne 61 du fichier sql.php.

JFormFieldSQL::$translate = false
protected

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

JFormFieldSQL::$type = 'SQL'

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

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

JFormFieldSQL::$valueField
protected

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


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