Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.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 : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/zenit/administrator/components/com_hikashop/views/plugins/tmpl/ |
Upload File : |
<?php
/**
* @package HikaShop for Joomla!
* @version 4.5.1
* @author hikashop.com
* @copyright (C) 2010-2022 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div class="iframedoc" id="iframedoc"></div>
<?php if(!empty($this->filters)) { ?>
<div style="float:right"><?php echo implode(' ', $this->filters); ?></div>
<div style="clear:right"></div>
<?php } ?>
<form action="<?php echo hikashop_completeLink('plugins&plugin_type='.$this->plugin_type); ?>" method="post" name="adminForm" id="adminForm" enctype="multipart/form-data">
<div class="hk-row">
<div class="hkc-md-5 hika_j4_search">
<?php echo $this->loadHkLayout('search', array()); ?>
</div>
<div id="hikashop_listing_filters_id" class="hkc-md-7 hikashop_listing_filters <?php echo $this->openfeatures_class; ?>"><?php
if(!empty($this->extrafilters)) {
foreach($this->extrafilters as $name => $filterObj) {
echo $filterObj->displayFilter($name, $this->pageInfo->filter);
}
}
echo JHTML::_('select.genericlist', $this->pluginValues, 'filter_plugin', 'class="custom-select" onchange="this.form.submit();"', 'value', 'text', $this->pageInfo->filter->plugin);
echo $this->pulbishedType->display('filter_published',$this->pageInfo->filter->published);
?></div>
</div>
<?php $cols = 7; ?>
<table class="adminlist table table-striped" cellpadding="1">
<thead>
<tr>
<th class="title titlenum"><?php echo JText::_('HIKA_NUM');?></th>
<th class="title titlebox">
<input type="checkbox" name="toggle" value="" onclick="hikashop.checkAll(this);" />
</th>
<th class="title"><?php echo JText::_('HIKA_NAME');?></th>
<?php
if(!empty($this->listing_columns)) {
foreach($this->listing_columns as $key => $column) {
$cols++;
?> <th class="title"><?php echo JText::_($column['name']);?></th>
<?php
}
}
?>
<th class="title"><?php echo JText::_('HIKA_TYPE');?></th>
<th class="title titleorder" style="width:10%;"><?php
if ($this->ordering->ordering) {
$keys = array_keys($this->rows);
$rows_nb = end($keys);
$href = "javascript:saveorder(".$rows_nb.", 'saveorder')";
?><a href="<?php echo $href; ?>" rel="tooltip" class="saveorder btn btn-sm btn-secondary float-end" title="Save Order">
<button class="button-apply btn btn-success" type="button">
<!-- <span class="icon-apply" aria-hidden="true"></span> -->
<i class="fas fa-save"></i>
</button>
</a><?php
}
echo JText::_('HIKA_ORDER');
?></th>
<th class="title" style="width:2%;"><?php echo JText::_('HIKA_DELETE');?></th>
<th class="title" style="width:2%;"><?php echo JText::_('HIKA_PUBLISHED');?></th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="<?php echo $cols; ?>">
<?php echo $this->pagination->getListFooter(); ?>
</td>
</tr>
</tfoot>
<tbody>
<?php
$p_id = $this->plugin_type.'_id';
$p_name = $this->plugin_type.'_name';
$p_order = $this->plugin_type.'_ordering';
$p_published = $this->plugin_type.'_published';
$p_type = $this->plugin_type.'_type';
if(empty($this->rows))
$this->rows = array();
$k = 0;
$i = 0;
$count = count($this->rows);
if(!empty($this->rows)) {
foreach($this->rows as $plugin_id => $plugin){
$published_id = $this->plugin_type.'_published-' . $plugin->$p_id;
$id = $this->plugin_type.'_' . $plugin->$p_id;
$currentPlugin = null;
if(isset($this->plugins[ $plugin->$p_type ])) {
$currentPlugin = $this->plugins[ $plugin->$p_type ];
$plugin->$p_published = $plugin->$p_published && $currentPlugin->published;
}
?>
<tr class="row<?php echo $k;?>" id="<?php echo $id;?>">
<td class="hk_center"><?php
echo $i+1;
?></td>
<td class="hk_center"><?php
echo JHTML::_('grid.id', $i, $plugin->$p_id );
?></td>
<td>
<a href="<?php echo hikashop_completeLink('plugins&plugin_type='.$this->plugin_type.'&task=edit&name='. $plugin->$p_type .'&subtask='.$this->plugin_type.'_edit&'.$p_id.'='.$plugin->$p_id);?>"><?php
echo $plugin->$p_name;
if(empty($plugin->$p_name))
echo '<em>' . JText::_('NO_NAME') . '</em>';
?></a>
</td>
<?php
if(!empty($this->listing_columns)) {
foreach($this->listing_columns as $key => $column) {
$cols++;
?> <td><?php
if(isset($column['col'])) {
$col = $column['col'];
echo @$plugin->$col;
}
?></td>
<?php
}
}
?>
<td><?php
if(!empty($currentPlugin))
echo JText::_($currentPlugin->name);
else
echo $plugin->$p_type;
?></td>
<td class="order">
<?php if($this->ordering->ordering) { ?>
<span><?php
echo $this->pagination->orderUpIcon(
$i,
$this->ordering->reverse XOR ($plugin->$p_order >= @$this->rows[$i-1]->$p_order),
$this->ordering->orderUp,
'Move Up',
$this->ordering->ordering
);
?></span>
<span><?php
echo $this->pagination->orderDownIcon(
$i,
$count,
$this->ordering->reverse XOR ($plugin->$p_order <= @$this->rows[$i+1]->$p_order),
$this->ordering->orderDown,
'Move Down',
$this->ordering->ordering
);
?></span>
<?php } ?>
<input type="text" name="order[]" size="5" <?php if(!$this->ordering->ordering) echo 'disabled="disabled"'; ?> value="<?php echo $plugin->$p_order; ?>" class="text_area" style="text-align: center" />
</td>
<td class="hk_center">
<span class=""><?php
echo $this->toggleClass->delete($id, $plugin->$p_type.'-'.$plugin->$p_id, $this->plugin_type, true);
?></span>
</td>
<td class="hk_center">
<span id="<?php echo $published_id;?>" class="spanloading"><?php echo $this->toggleClass->toggle($published_id, (int)$plugin->$p_published, $this->plugin_type);?></span>
</td>
</tr>
<?php
$k = 1-$k;
$i++;
}
} else if(in_array($this->plugin_type, array('payment','shipping'))) {
?>
<tr>
<td class="empty_list" colspan="<?php echo $cols; ?>"><?php
echo JText::_('NO_METHOD_CLICK_NEW');
?></td>
</tr>
<?php
}
?>
</tbody>
</table>
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="option" value="<?php echo HIKASHOP_COMPONENT;?>" />
<input type="hidden" name="task" value="listing"/>
<?php echo JHTML::_( 'form.token' ); ?>
</form>