Your IP : 216.73.216.219


Current Path : /home/chauffn/vuzelia/2023/tmp/install_6a8c3a0fa3a1b/src/fields/
Upload File :
Current File : /home/chauffn/vuzelia/2023/tmp/install_6a8c3a0fa3a1b/src/fields/helixgallery.php

<?php
/**
 * @package Helix_Ultimate_Framework
 * @author JoomShaper <support@joomshaper.com>
 * @copyright Copyright (c) 2010 - 2025 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
 */

defined('_JEXEC') or die();

use HelixUltimate\Framework\Platform\Helper;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\FormField;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Uri\Uri;
use Joomla\Filesystem\File;

/**
 * Form field for Helix gallery.
 *
 * @since    1.0.0
 */
class JFormFieldHelixgallery extends FormField
{
    /**
     * Field type
     *
     * @var        string    $type
     * @since    1.0.0
     */
    protected $type = 'Helixgallery';

    /**
     * Override getInput function form FormField
     *
     * @return    string    Field HTML string
     * @since    1.0.0
     */
    protected function getInput()
    {
        $doc = Factory::getDocument();

        HTMLHelper::_('jquery.framework');
        $helix_plg_url = Uri::root(true) . '/plugins/system/helixultimate';
        $doc->addScript($helix_plg_url . '/assets/js/admin/jquery-ui.min.js');

        $values = json_decode($this->value ?? "");

        if (! empty($values)) {
            $images = $this->element['name'] . '_images';
            $values = $values->$images;
        } else {
            $values = [];
        }

        $output  = '<div class="hu-gallery-field">';
        $output .= '<ul class="hu-gallery-items clearfix">';

        if (is_array($values) && ! empty($values)) {
            foreach ($values as $key => $value) {
                $data_src = $value;

                $src = Uri::root(true) . '/' . $value;

                $basename = basename($src);

                // Check for the image's existence in the media folder
                $absolutePath = JPATH_ROOT . '/' . $value;
                $thumbnail    = JPATH_ROOT . '/' . dirname($value) . '/' . File::stripExt($basename) . '_thumbnail.' . Helper::getExt($basename);
                $small_size   = JPATH_ROOT . '/' . dirname($value) . '/' . File::stripExt($basename) . '_small.' . Helper::getExt($basename);

                // Only show images that actually exist (thumbnail or small size)
                if (file_exists($absolutePath) || file_exists($thumbnail) || file_exists($small_size)) {
                    if (file_exists($thumbnail)) {
                        $src = Uri::root(true) . '/' . dirname($value) . '/' . File::stripExt($basename) . '_thumbnail.' . Helper::getExt($basename);
                    } elseif (file_exists($small_size)) {
                        $src = Uri::root(true) . '/' . dirname($value) . '/' . File::stripExt($basename) . '_small.' . Helper::getExt($basename);
                    }

                    $output .= '<li class="hu-gallery-item" data-src="' . $data_src . '">
						<a href="#" class="btn btn-mini btn-danger btn-hu-remove-gallery-image">
							<span class="fas fa-times" aria-hidden="true"></span>
						</a>
						<img src="' . $src . '" alt="">
					</li>';
                }
            }
        }

        $output .= '</ul>';

        $output .= '<input type="file" id="hu-gallery-item-upload" accept="image/*" multiple="multiple" style="display:none;">';
        $output .= '<a class="btn btn-default btn-secondary btn-hu-gallery-item-upload" href="#">
						<i class="fas fa-plus" aria-hidden="true"></i> ' . Text::_('HELIX_ULTIMATE_UPLOAD_IMAGES') . '
					</a>';

        $output .= '<input type="hidden" name="' . $this->name . '" data-name="' . $this->element['name'] . '_images" id="' . $this->id . '" value="' . htmlspecialchars($this->value ?? "", ENT_COMPAT, 'UTF-8') . '" class="form-field-hu-gallery">';
        $output .= '</div>';

        return $output;
    }
}