File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_gdpr/framework/html
Viewing File: /home/astoriaah/www/administrator/components/com_gdpr/framework/html/aclgroupsmultiselect.php
<?php //namespace components\com_gdpr\framework\html; /** * @package GDPR::components::com_gdpr * @subpackage framework * @subpackage html * @author Joomla! Extensions Store * @copyright (C) 2018 - Joomla! Extensions Store * @license GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html */ defined( '_JEXEC' ) or die( 'Restricted access' ); if(!class_exists('JFormFieldList')) { require_once JPATH_SITE . '/libraries/joomla/form/fields/list.php'; } /** * Form Field for ACL Groups * @package GDPR::components::com_gdpr * @subpackage framework * @subpackage html * @since 1.0 */ class JFormFieldAclGroupsMultiselect extends JFormFieldList { /** * Method to get the field input markup for a generic list. * Use the multiple attribute to enable multiselect. * * @return string The field input markup. * * @since 11.1 */ protected function getInput() { // Initialize variables. $html = array (); $attr = ''; // Default option translation $defaultTranslation = $this->element ['translation'] ? JText::_($this->element ['translation']) : JText::_('COM_GDPR_NOEXCLUSIONS'); // Initialize some field attributes. $attr .= $this->element ['class'] ? ' class="' . ( string ) $this->element ['class'] . '"' : ''; // To avoid user's confusion, readonly="true" should imply // disabled="true". if (( string ) $this->element ['readonly'] == 'true' || ( string ) $this->element ['disabled'] == 'true') { $attr .= ' disabled="disabled"'; } $attr .= $this->element ['size'] ? ' size="' . ( int ) $this->element ['size'] . '"' : ''; $attr .= $this->multiple ? ' multiple="multiple"' : ''; // Initialize JavaScript field attributes. $attr .= $this->element ['onchange'] ? ' onchange="' . ( string ) $this->element ['onchange'] . '"' : ''; // Get the field options. $options = ( array ) $this->getOptions ($defaultTranslation); $html = JHtml::_ ( 'select.genericlist', $options, $this->name, trim ( $attr ), 'value', 'text', $this->value, $this->id ); return $html; } /** * Method to get the field options. * * @return array The field option objects. * * @since 11.1 */ protected function getOptions($defaultTranslation = null) { $db = JFactory::getDbo (); $db->setQuery ( 'SELECT a.id AS value, a.title AS text, COUNT(DISTINCT b.id) AS level' . ' FROM ' . $db->quoteName ( '#__usergroups' ) . ' AS a' . ' LEFT JOIN ' . $db->quoteName ( '#__usergroups' ) . ' AS b' . ' ON a.lft > b.lft AND a.rgt < b.rgt' . ' WHERE a.parent_id > 0' . ' GROUP BY a.id, a.title, a.lft, a.rgt' . ' ORDER BY a.lft ASC' ); $options = $db->loadObjectList (); // Check for a database error. if ($db->getErrorNum ()) { return array(); } $noActiveOption = JHtml::_('select.option', '0', $defaultTranslation); $noActiveOption->level = 0; array_unshift($options, $noActiveOption); foreach ( $options as &$option ) { $option->text = str_repeat ( '- ', $option->level ) . $option->text; } return $options; } }