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

Liste de tous les membres

Attributs publics

 $type = 'Category'

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)

Additional Inherited Members

- 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 22 du fichier category.php.


Documentation des fonctions membres

JFormFieldCategory::getOptions ( )
protected

Method to get the field options for category Use the extension attribute in a form to specify the.specific extension for which categories should be displayed. Use the show_root attribute to specify whether to show the global category root in the list.

Renvoie:
array The field option objects.
Depuis:
11.1

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

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

Références JText\_(), JLog\add(), JFactory\getUser(), et JLog\WARNING.

{
$options = array();
$extension = $this->element['extension'] ? (string) $this->element['extension'] : (string) $this->element['scope'];
$published = (string) $this->element['published'];
// Load the category options for a given extension.
if (!empty($extension))
{
// Filter over published state or not depending upon if it is present.
if ($published)
{
$options = JHtml::_('category.options', $extension, array('filter.published' => explode(',', $published)));
}
else
{
$options = JHtml::_('category.options', $extension);
}
// Verify permissions. If the action attribute is set, then we scan the options.
if ((string) $this->element['action'])
{
// Get the current user object.
$user = JFactory::getUser();
foreach ($options as $i => $option)
{
/*
* To take save or create in a category you need to have create rights for that category
* unless the item is already in that category.
* Unset the option if the user isn't authorised for it. In this field assets are always categories.
*/
if ($user->authorise('core.create', $extension . '.category.' . $option->value) != true)
{
unset($options[$i]);
}
}
}
if (isset($this->element['show_root']))
{
array_unshift($options, JHtml::_('select.option', '0', JText::_('JGLOBAL_ROOT')));
}
}
else
{
JLog::add(JText::_('JLIB_FORM_ERROR_FIELDS_CATEGORY_ERROR_EXTENSION_EMPTY'), JLog::WARNING, 'jerror');
}
// Merge any additional options in the XML definition.
$options = array_merge(parent::getOptions(), $options);
return $options;
}

+ Voici le graphe d'appel pour cette fonction :


Documentation des données membres

JFormFieldCategory::$type = 'Category'

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

Définition à la ligne 30 du fichier category.php.


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