Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/components/com_hikamarket/views/uploadmarket/tmpl/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package HikaMarket for Joomla!
* @version 3.1.1
* @author Obsidev S.A.R.L.
* @copyright (C) 2011-2020 OBSIDEV. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div>
<?php if(!empty($this->params->delete) &&
!empty($this->params->uploader_id)) { ?>
<a href="#delete" class="deleteImg"
onclick="return window.hkUploaderList['<?php echo
$this->params->uploader_id;
?>'].delImage(this);"><i class="fas
fa-trash-alt"></i></a>
<?php } ?>
<div class="hikamarket_image"><?php
$img =
$this->imageHelper->getThumbnail(@$this->params->file_path,
array(100, 100), array('default' => true));
if($img->success) {
$extra_data = '';
if(!empty($img->external))
$extra_data .= 'width="100"
height="100;"';
$content = '<img src="'.$img->url.'"
alt="'.$img->filename.'"
'.$extra_data.'/>';
echo $this->popup->image($content, $img->origin_url);
}
if(!empty($this->params->field_name))
echo '<input type="hidden"
name="'.$this->params->field_name.'"
value="'.$this->escape(@$this->params->file_path).'"/>';
?></div>
</div>