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

Liste de tous les membres

Fonctions membres publiques

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

Fonctions membres protégées

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

Attributs protégés

 $type = 'Timezone'
 $keyField
- Attributs protégés inherited from JFormFieldGroupedList
- 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

Attributs protégés statiques

static $zones = array('Africa', 'America', 'Antarctica', 'Arctic', 'Asia', 'Atlantic', 'Australia', 'Europe', 'Indian', 'Pacific')

Description détaillée

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


Documentation des fonctions membres

JFormFieldTimezone::__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 56 du fichier timezone.php.

{
switch ($name)
{
case 'keyField':
return $this->$name;
}
}
JFormFieldTimezone::__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 77 du fichier timezone.php.

{
switch ($name)
{
case 'keyField':
$this->keyField = (string) $value;
break;
default:
}
}
JFormFieldTimezone::getGroups ( )
protected

Method to get the time zone field option groups.

Renvoie:
array The field option objects as a nested array in groups.
Depuis:
11.1

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

Définition à la ligne 123 du fichier timezone.php.

Références JFactory\getConfig().

{
$groups = array();
$keyField = !empty($this->keyField) ? $this->keyField : 'id';
$keyValue = $this->form->getValue($keyField);
// If the timezone is not set use the server setting.
if (strlen($this->value) == 0 && empty($keyValue))
{
$this->value = JFactory::getConfig()->get('offset');
}
// Get the list of time zones from the server.
$zones = DateTimeZone::listIdentifiers();
// Build the group lists.
foreach ($zones as $zone)
{
// Time zones not in a group we will ignore.
if (strpos($zone, '/') === false)
{
continue;
}
// Get the group/locale from the timezone.
list ($group, $locale) = explode('/', $zone, 2);
// Only use known groups.
if (in_array($group, self::$zones))
{
// Initialize the group if necessary.
if (!isset($groups[$group]))
{
$groups[$group] = array();
}
// Only add options where a locale exists.
if (!empty($locale))
{
$groups[$group][$zone] = JHtml::_('select.option', $zone, str_replace('_', ' ', $locale), 'value', 'text', false);
}
}
}
// Sort the group lists.
ksort($groups);
foreach ($groups as &$location)
{
sort($location);
}
// Merge any additional groups in the XML definition.
$groups = array_merge(parent::getGroups(), $groups);
return $groups;
}

+ Voici le graphe d'appel pour cette fonction :

JFormFieldTimezone::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 104 du fichier timezone.php.

{
if ($return)
{
$this->keyField = (string) $this->element['key_field'];
}
return $return;
}

Documentation des données membres

JFormFieldTimezone::$keyField
protected

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

JFormFieldTimezone::$type = 'Timezone'
protected

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

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

JFormFieldTimezone::$zones = array('Africa', 'America', 'Antarctica', 'Arctic', 'Asia', 'Atlantic', 'Australia', 'Europe', 'Indian', 'Pacific')
staticprotected

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


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