Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/administrator/components/com_hikashop/views/plugins/tmpl/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package HikaShop for Joomla!
* @version 2.2.3
* @author hikashop.com
* @copyright (C) 2010-2013 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 } ?>
<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>
<th class="title titleorder"
style="width:10%;"><?php
if(@$this->data['order']->ordering)
echo JHTML::_('grid.order', $this->elements);
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>
<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';
$k = 0;
$i = 0;
$a = count($this->elements);
$plugins = array();
if(!empty($this->elements))
$plugins = array_values($this->elements);
foreach($plugins as $plugin){
$published_id = $this->plugin_type.'_published-' .
$plugin->$p_id;
$id = $this->plugin_type.'_' . $plugin->$p_id;
?>
<tr class="row<?php echo $k;?>" id="<?php echo
$id;?>">
<td align="center"><?php
echo $i+1;
?></td>
<td align="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='.$this->data['pluginName'].'&subtask='.$this->plugin_type.'_edit&'.$p_id.'='.$plugin->$p_id);?>"><?php
echo $plugin->$p_name;?></a>
</td>
<td class="order">
<span><?php
echo $this->data['pagination']->orderUpIcon(
$i,
$this->data['order']->reverse XOR
($plugin->$p_order >= @$plugins[$i-1]->$p_order),
$this->data['order']->orderUp,
'Move Up',
$this->data['order']->ordering
);
?></span>
<span><?php
echo $this->data['pagination']->orderDownIcon(
$i,
$a,
$this->data['order']->reverse XOR
($plugin->$p_order <= @$plugins[$i+1]->$p_order),
$this->data['order']->orderDown,
'Move Down',
$this->data['order']->ordering
);
?></span>
<input type="text" name="order[]"
size="5" <?php
if(!$this->data['order']->ordering) echo
'disabled="disabled"'; ?> value="<?php echo
$plugin->$p_order; ?>" class="text_area"
style="text-align: center" />
</td>
<td align="center">
<span class=""><?php
echo $this->data['toggleClass']->delete($id,
$this->name.'-'.$plugin->$p_id, $this->plugin_type,
true);
?></span>
</td>
<td align="center">
<span id="<?php echo $published_id;?>"
class="spanloading"><?php echo
$this->data['toggleClass']->toggle($published_id,
(int)$plugin->$p_published, $this->plugin_type);?></span>
</td>
</tr>
<?php
$k = 1-$k;
$i++;
}
?>
</tbody>
</table>
<input type="hidden" name="boxchecked"
value="0" />
<input type="hidden" name="subtask"
value=""/>
<input type="hidden" name="option"
value="<?php echo HIKASHOP_COMPONENT;?>" />
<input type="hidden" name="task"
value="edit"/>