| Server IP : 87.98.154.146 / Your IP : 216.73.216.101 Web Server : Apache System : Linux webm005.cluster126.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : bsiadvisil ( 110003) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/bsiadvisil/old/administrator/components/com_speasyimagegallery/layouts/ |
Upload File : |
<?php
/**
* @package com_speasyimagegallery
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2017 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
$images = $displayData['images'];
$total = $displayData['total'];
$count = count($images);
// No direct access
defined('_JEXEC') or die('Restricted access');
?>
<div class="speasyimagegallery-toolbar">
<a href="#" class="btn btn-primary" id="speasyimagegallery-btn-upload-images"><i class="fa fa-upload"></i> <?php echo JText::_('COM_SPEASYIMAGEGALLERY_IMAGES_MANAGER_UPLOAD_IMAGES'); ?></a>
</div>
<div class="speasyimagegallery-images-list<?php echo ($count) ? '' : ' speasyimagegallery-no-images'; ?> clearfix">
<div class="speasyimagegallery-images-empty">
<div>
<i class="fa fa-upload fa-3x"></i>
<h3 class="speasyimagegallery-images-empty-title">
<?php echo JText::_('COM_SPEASYIMAGEGALLERY_IMAGES_MANAGER_DRAG_DROP_UPLOAD'); ?>
</h3>
<div>
<input type="file" id="speasyimagegallery-images-input-file" multiple="multiple" style="display:none" accept="image/*">
<a href="#" id="speasyimagegallery-upload-images-empty" class="btn btn-primary btn-large"><?php echo JText::_('COM_SPEASYIMAGEGALLERY_IMAGES_MANAGER_OR_SELECT'); ?></a>
</div>
</div>
</div>
<div class="speasyimagegallery-images-wrapper">
<div class="sp-table">
<div class="sp-thead clearfix">
<div style="width: 5%;" class="nowrap center hidden-phone">
<div>
<span class="icon-menu-2"></span>
</div>
</div>
<div style="width: 15%;" class="nowrap center">
<div>
<?php echo JText::_('COM_SPEASYIMAGEGALLERY_LIST_IMAGE'); ?>
</div>
</div>
<div style="width: 25%;">
<div>
<?php echo JText::_('COM_SPEASYIMAGEGALLERY_LIST_TITLE'); ?>
</div>
</div>
<div style="width: 15%;" class="nowrap center">
<div>
<?php echo JText::_('COM_SPEASYIMAGEGALLERY_LIST_CREATED'); ?>
</div>
</div>
<div style="width: 15%;" class="nowrap hidden-phone center">
<div>
<?php echo JText::_('COM_SPEASYIMAGEGALLERY_LIST_AUTHOR'); ?>
</div>
</div>
<div style="width: 10%;" class="nowrap hidden-phone center">
<div>
<?php echo JText::_('COM_SPEASYIMAGEGALLERY_LIST_STATUS'); ?>
</div>
</div>
<div style="width: 10%;" class="nowrap hidden-phone center">
<div>
<?php echo JText::_('COM_SPEASYIMAGEGALLERY_LIST_ID'); ?>
</div>
</div>
</div>
<div id="imagesList" class="sp-tbody">
<?php
foreach ($images as $key => $image) {
echo JLayoutHelper::render('image', array('image'=>$image));
}
?>
</div>
</div>
</div>
</div>
<?php