Liste de tous les membres
Attributs protégés statiques |
static | $options = array() |
Description détaillée
Définition à la ligne 21 du fichier predefinedlist.php.
Documentation des fonctions membres
JFormFieldPredefinedList::getOptions |
( |
| ) |
|
|
protected |
Method to get the options to populate list
- Renvoie:
- array The field option objects.
- Depuis:
- 3.2
Réimplémentée à partir de JFormFieldList.
Définition à la ligne 62 du fichier predefinedlist.php.
Références JText\_().
{
$hash = md5($this->element);
$type = strtolower($this->type);
if (!isset(static::$options[
$type][$hash]) && !empty($this->predefinedOptions))
{
$filter = isset($this->element['filter']) ? explode(',', $this->element['filter']) : array();
foreach ($this->predefinedOptions as
$value => $text)
{
if (empty($filter) || in_array(
$value, $filter))
{
$text = $this->translate ?
JText::_($text) : $text;
'text' => $text
);
}
}
}
return static::$options[
$type][$hash];
}
Documentation des données membres
JFormFieldPredefinedList::$options = array() |
|
staticprotected |
JFormFieldPredefinedList::$predefinedOptions = array() |
|
protected |
JFormFieldPredefinedList::$translate = true |
|
protected |
JFormFieldPredefinedList::$type = 'PredefinedList' |
|
protected |
La documentation de cette classe a été générée à partir du fichier suivant :