Your IP : 216.73.216.65


Current Path : /home/ataenra/www/libraries/regularlabs/src/Form/Field/
Upload File :
Current File : /home/ataenra/www/libraries/regularlabs/src/Form/Field/ContentCategoriesField.php

<?php
/**
 * @package         Regular Labs Library
 * @version         23.12.1338
 * 
 * @author          Peter van Westen <info@regularlabs.com>
 * @link            https://regularlabs.com
 * @copyright       Copyright © 2023 Regular Labs All Rights Reserved
 * @license         GNU General Public License version 2 or later
 */

namespace RegularLabs\Library\Form\Field;

defined('_JEXEC') or die;

use RegularLabs\Library\ArrayHelper as RL_Array;
use RegularLabs\Library\DB as RL_DB;
use RegularLabs\Library\Form\Form as RL_Form;
use RegularLabs\Library\Form\FormField as RL_FormField;

class ContentCategoriesField extends RL_FormField
{
    public bool $is_select_list  = true;
    public bool $use_ajax        = true;
    public bool $use_tree_select = true;

    public function getNamesByIds(array $values, array $attributes): array
    {
        $query = $this->db->getQuery(true)
            ->select('c.id, c.title as name, c.published, c.language')
            ->from('#__categories AS c')
            ->where('c.extension = ' . $this->db->quote('com_content'))
            ->where(RL_DB::is('c.id', $values))
            ->order('c.lft');
        $this->db->setQuery($query);
        $categories = $this->db->loadObjectList();

        return RL_Form::getNamesWithExtras($categories, ['language', 'unpublished']);
    }

    protected function getOptions()
    {
        $query = $this->db->getQuery(true)
            ->select('COUNT(*)')
            ->from('#__categories as c')
            ->where('c.extension = ' . $this->db->quote('com_content'))
            ->where('c.parent_id > 0')
            ->where('c.published > -1');
        $this->db->setQuery($query);
        $total = $this->db->loadResult();

        if ($total > $this->max_list_count)
        {
            return -1;
        }

        $this->value = RL_Array::toArray($this->value);

        $query->clear('select')
            ->select('c.id, c.title as name, c.published, c.language, c.level')
            ->order('c.lft');
        $this->db->setQuery($query);
        $list = $this->db->loadObjectList();

        return $this->getOptionsByList($list, ['language', 'unpublished'], -1);
    }
}