| Server IP : 104.21.84.107 / Your IP : 104.23.243.197 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/tutoriales/administrator/components/com_users/src/Field/ |
Upload File : |
<?php
/**
* @package Joomla.Administrator
* @subpackage com_users
*
* @copyright (C) 2010 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Joomla\Component\Users\Administrator\Field;
use Joomla\CMS\Access\Access;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Helper\UserGroupsHelper;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* User Group Parent field..
*
* @since 1.6
*/
class GroupparentField extends ListField
{
/**
* The form field type.
*
* @var string
* @since 1.6
*/
protected $type = 'GroupParent';
/**
* Method to clean the Usergroup Options from all children starting by a given father
*
* @param array $userGroupsOptions The usergroup options to clean
* @param integer $fatherId The father ID to start with
*
* @return array The cleaned field options
*
* @since 3.9.4
*/
private function cleanOptionsChildrenByFather($userGroupsOptions, $fatherId)
{
foreach ($userGroupsOptions as $userGroupsOptionsId => $userGroupsOptionsData) {
if ((int) $userGroupsOptionsData->parent_id === (int) $fatherId) {
unset($userGroupsOptions[$userGroupsOptionsId]);
$userGroupsOptions = $this->cleanOptionsChildrenByFather($userGroupsOptions, $userGroupsOptionsId);
}
}
return $userGroupsOptions;
}
/**
* Method to get the field options.
*
* @return array The field option objects
*
* @since 1.6
*/
protected function getOptions()
{
$options = UserGroupsHelper::getInstance()->getAll();
$currentGroupId = (int) Factory::getApplication()->getInput()->get('id', 0, 'int');
// Prevent to set yourself as parent
if ($currentGroupId) {
unset($options[$currentGroupId]);
}
// We should not remove any groups when we are creating a new group
if ($currentGroupId !== 0) {
// Prevent parenting direct children and children of children of this item.
$options = $this->cleanOptionsChildrenByFather($options, $currentGroupId);
}
$options = array_values($options);
$isSuperAdmin = $this->getCurrentUser()->authorise('core.admin');
// Pad the option text with spaces using depth level as a multiplier.
foreach ($options as $i => $option) {
// Show groups only if user is super admin or group is not super admin
if ($isSuperAdmin || !Access::checkGroup($option->id, 'core.admin')) {
$option->value = $option->id;
$option->text = str_repeat('- ', $option->level) . $option->title;
} else {
unset($options[$i]);
}
}
// Merge any additional options in the XML definition.
return array_merge(parent::getOptions(), $options);
}
}