| Current Path : /home/gotzfrokfn/www/administrator/components/com_virtuemart/views/category/tmpl/ |
| Current File : /home/gotzfrokfn/www/administrator/components/com_virtuemart/views/category/tmpl/default.php |
<?php
/**
*
* Lists all the categories in the shop
*
* @package VirtueMart
* @subpackage Category
* @author RickG, jseros, RolandD, Max Milbers
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: default.php 10686 2022-07-01 13:01:24Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
AdminUIHelper::startAdminArea($this);
?>
<form action="index.php?option=com_virtuemart&view=category" method="post" name="adminForm" id="adminForm">
<div id="header">
<?php if ($this->task=='massxref_cats' or $this->task=='massxref_cats_exe') : ?>
<div id="massxref_task">
<table class="">
<tr>
<td align="left">
<?php echo vmText::_('COM_VIRTUEMART_PRODUCT_XREF_TASK') ?>
</td>
<td>
<?php
$options = array(
'replace' => vmText::_('COM_VIRTUEMART_PRODUCT_XREF_TASK_REPLACE'),
'add' => vmText::_('COM_VIRTUEMART_PRODUCT_XREF_TASK_ADD'),
'remove' => vmText::_('COM_VIRTUEMART_PRODUCT_XREF_TASK_REMOVE')
);
echo VmHTML::selectList('massxref_task', 'replace', $options);
?>
</td>
</tr>
</table>
</div>
<?php endif; ?>
<div id="filterbox">
<table class="">
<tr>
<td align="left">
<?php echo $this->displayDefaultViewSearch() ?>
</td>
<td>
<select class="inputbox" id="top_category_id" name="top_category_id" onchange="this.form.submit(); return false;">
<option value=""><?php echo vmText::sprintf( 'COM_VIRTUEMART_SELECT' , vmText::_('COM_VIRTUEMART_CATEGORY_FORM_TOP_LEVEL')) ; ?></option>
</select>
</td>
<?php if($this->showVendors()){ ?>
<td>
<?php echo $this->lists['vendors']; ?>
</td>
<?php } ?>
<td>
<?php echo $this->catpagination->getLimitBox(); ?>
</td>
</tr>
</table>
</div>
<div id="resultscounter"><?php echo $this->catpagination->getResultsCounter(); ?></div>
</div>
<div id="editcell">
<table class="adminlist table table-striped" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th class="admin-checkbox">
<input type="checkbox" name="toggle" value="" onclick="Joomla.checkAll(this)" />
</th>
<th align="left" width="20%">
<?php echo $this->sort('category_name') ?>
</th>
<th align="left" width="65%">
<?php echo $this->sort('category_description', 'COM_VIRTUEMART_DESCRIPTION') ; ?>
</th>
<th style="min-width:80px;width:8%;text-align:center;">
<?php echo vmText::_('COM_VIRTUEMART_PRODUCT_S'); ?>
</th>
<th style="min-width:80px;width:8%;text-align:center;">
<?php echo $this->sort( 'c.ordering' , 'COM_VIRTUEMART_ORDERING') ?>
<?php echo $this->saveOrder(); ?>
</th>
<th align="center" >
<?php echo $this->sort('c.published' , 'COM_VIRTUEMART_PUBLISHED') ?>
</th>
<?php if($this->showVendors()){ ?>
<th>
<?php echo $this->sort( 'cx.category_shared' , 'COM_VIRTUEMART_SHARED') ?>
</th>
<?php } ?>
<th><?php echo $this->sort('virtuemart_category_id', 'COM_VIRTUEMART_ID') ?></th>
<!--th></th-->
</tr>
</thead>
<tbody>
<?php
$k = 0;
$repeat = 0;
$nrows = count( $this->categories );
if( $this->catpagination->limit < $nrows ){
if( ($this->catpagination->limitstart + $this->catpagination->limit) < $nrows ) {
$nrows = $this->catpagination->limitstart + $this->catpagination->limit;
}
}
foreach($this->categories as $i=>$cat){
$checked = JHtml::_('grid.id', $i, $cat->virtuemart_category_id);
$published = $this->gridPublished( $cat, $i );
$editlink = JRoute::_('index.php?option=com_virtuemart&view=category&task=edit&cid=' . $cat->virtuemart_category_id, FALSE);
if(empty($cat->category_name)){
$cat->category_name = vmText::sprintf('COM_VM_TRANSLATION_MISSING','virtuemart_category_id',$cat->virtuemart_category_id);
}
// $statelink = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id=' . $cat->virtuemart_category_id);
$showProductsLink = JRoute::_('index.php?option=com_virtuemart&view=product&virtuemart_category_id=' . $cat->virtuemart_category_id, FALSE);
$shared = $this->toggle($cat->shared, $i, 'toggle.shared');
$categoryLevel = '';
if(!isset($cat->level)){
if($cat->category_parent_id){
$cat->level = 1;
} else {
$cat->level = 0;
}
}
$repeat = $cat->level;
if($repeat > 0){
$categoryLevel = str_repeat(". ", $repeat - 1);
$categoryLevel .= "<sup>|_</sup> ";
}
?>
<tr class="<?php echo "row".$k;?>">
<td class="admin-checkbox"><?php echo $checked;?></td>
<td align="left">
<span class="categoryLevel"><?php echo $categoryLevel;?></span>
<a href="<?php echo $editlink;?>"><?php echo $cat->category_name; ?></a>
</td>
<td align="left">
<?php
/*$descr = htmlspecialchars_decode($cat->category_description);
echo shopFunctionsF::limitStringByWord(JFilterOutput::cleanText($descr),200);*/
echo shopFunctionsF::limitStringByWord(strip_tags($cat->category_description),200); ?>
</td>
<td>
<?php echo $this->categories[$i]->productcount;//ShopFunctions::countProductsByCategory($row->virtuemart_category_id);?>
<a href="<?php echo $showProductsLink; ?>">[ <?php echo vmText::_('COM_VIRTUEMART_SHOW');?> ]</a>
</td>
<td align="center" class="vm-order">
<?php if($this->showDrag){ ?>
<span class="vmicon vmicon-16-move"></span>
<?php }
if($cat->showOrderUp){
echo '<span>'.$this->catpagination->vmOrderUpIcon( $i, $cat->ordering, 'orderUp', vmText::_('COM_VIRTUEMART_MOVE_UP')).'</span>';
}
if($cat->showOrderDown){
echo '<span>'.JHtml::_( 'jgrid.orderDown', $i, 'orderDown', '', 'COM_VIRTUEMART_MOVE_DOWN', true, 'cb' ).'</span>';
}
?>
<input class="ordering" type="text" name="order[<?php echo $cat->virtuemart_category_id?>]" id="order[<?php echo $i?>]" size="5" value="<?php echo $cat->ordering; ?>" style="text-align: center" />
</td>
<td align="center">
<?php echo $published;?>
</td>
<?php
if((Vmconfig::get('multix','none')!='none')) {
?><td align="center">
<?php echo $shared; ?>
</td>
<?php
}
?>
<td><?php echo $cat->virtuemart_category_id; // echo $product->vendor_name; ?></td>
<!--td >
<span class="vmicon vmicon-16-move"></span>
</td-->
</tr>
<?php
$k = 1 - $k;
}
?>
</tbody>
<tfoot>
<tr>
<td colspan="10">
<?php echo $this->catpagination->getListFooter(false); ?>
</td>
</tr>
</tfoot>
</table>
</div>
<?php
echo $this->addStandardHiddenToForm($this->_name,$this->task);
?>
</form>
<?php
// Removed for the moment,categories can only be drag and drop within their sublevel
//DragnDrop by StephanBais
//if ($this->virtuemart_category_id ) { ?>
<!--script>
jQuery(function() {
jQuery( ".adminlist" ).sortable({
handle: ".vmicon-16-move",
items: 'tr:not(:first,:last)',
opacity: 0.8,
update: function(event, ui) {
var i = 1;
jQuery(function updaterows() {
jQuery(".order").each(function(index){
var row = jQuery(this).parent('td').parent('tr').prevAll().length;
jQuery(this).val(row);
i++;
});
});
},
stop: function () {
var inputs = jQuery('input.ordering');
var rowIndex = inputs.length;
jQuery('input.ordering').each(function(idx) {
jQuery(this).val(idx + 1);
});
}
});
});
jQuery('input.ordering').css({'color': '#666666', 'background-color': 'transparent','border': 'none' }).attr('readonly', true);
</script-->
<?php // } ?>
<?php AdminUIHelper::endAdminArea(); ?>