Current File : /home/pacjaorg/public_html/dnpsom/plugins/system/helixultimate/fields/helixgallery.php |
<?php
/**
* @package Helix_Ultimate_Framework
* @author JoomShaper <support@joomshaper.com>
* @copyright Copyright (c) 2010 - 2021 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
use Joomla\CMS\Factory;
use Joomla\CMS\Filesystem\File;
use Joomla\CMS\Form\FormField;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Uri\Uri;
defined('_JEXEC') or die();
/**
* Form field for Helix gallery.
*
* @since 1.0.0
* @deprecated 3.0 Use the Same Class from the src/fields instead.
*/
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');
$plg_path = Uri::root(true) . '/plugins/system/helixultimate';
$values = json_decode($this->value);
if (!empty($values))
{
$images = $this->element['name'] . '_images';
$values = $values->$images;
}
else
{
$values = array();
}
$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);
$thumbnail = JPATH_ROOT . '/' . dirname($value) . '/' . File::stripExt($basename) . '_thumbnail.' . File::getExt($basename);
$small_size = JPATH_ROOT . '/' . dirname($value) . '/' . File::stripExt($basename) . '_small.' . File::getExt($basename);
if (file_exists($thumbnail))
{
$src = Uri::root(true) . '/' . dirname($value) . '/' . File::stripExt($basename) . '_thumbnail.' . File::getExt($basename);
}
elseif (file_exists($small_size))
{
$src = Uri::root(true) . '/' . dirname($value) . '/' . File::stripExt($basename) . '_small.' . File::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;
}
}