__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php

/**
 * @package     Joomla.Administrator
 * @subpackage  com_fields
 *
 * @copyright   (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\Component\Fields\Administrator\Field;

use Joomla\CMS\Form\Field\ListField;
use Joomla\Utilities\ArrayHelper;

// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects

/**
 * Fields Groups
 *
 * @since  3.7.0
 */
class FieldgroupsField extends ListField
{
    /**
     * @var    string
     */
    public $type = 'Fieldgroups';

    /**
     * Method to get the field options.
     *
     * @return  array  The field option objects.
     *
     * @since   3.7.0
     */
    protected function getOptions()
    {
        $context   = (string) $this->element['context'];
        $states    = $this->element['state'] ?: '0,1';
        $states    = ArrayHelper::toInteger(explode(',', $states));

        $user       = $this->getCurrentUser();
        $viewlevels = ArrayHelper::toInteger($user->getAuthorisedViewLevels());

        $db    = $this->getDatabase();
        $query = $db->getQuery(true);
        $query->select(
            [
                $db->quoteName('title', 'text'),
                $db->quoteName('id', 'value'),
                $db->quoteName('state'),
            ]
        );
        $query->from($db->quoteName('#__fields_groups'));
        $query->whereIn($db->quoteName('state'), $states);
        $query->where($db->quoteName('context') . ' = :context');
        $query->whereIn($db->quoteName('access'), $viewlevels);
        $query->order('ordering asc, id asc');
        $query->bind(':context', $context);

        $db->setQuery($query);
        $options = $db->loadObjectList();

        foreach ($options as $option) {
            if ($option->state == 0) {
                $option->text = '[' . $option->text . ']';
            }

            if ($option->state == 2) {
                $option->text = '{' . $option->text . '}';
            }
        }

        return array_merge(parent::getOptions(), $options);
    }
}

Filemanager

Name Type Size Permission Actions
ComponentsFieldgroupField.php File 3.49 KB 0664
ComponentsFieldsField.php File 3.48 KB 0664
FieldLayoutField.php File 6.04 KB 0664
FieldcontextsField.php File 1.45 KB 0664
FieldgroupsField.php File 2.11 KB 0664
SectionField.php File 2.06 KB 0664
SubfieldsField.php File 3.68 KB 0664
TypeField.php File 2.48 KB 0664
Filemanager