| Current Path : /home/gotzfrokfn/www/administrator/components/com_virtuemart/views/coupon/tmpl/ |
| Current File : /home/gotzfrokfn/www/administrator/components/com_virtuemart/views/coupon/tmpl/default.php |
<?php
/**
*
* Description
*
* @package VirtueMart
* @subpackage Coupon
* @author RickG
* @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 10649 2022-05-05 14:29:44Z 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=coupon" method="post" name="adminForm" id="adminForm">
<div id="header">
<div id="filterbox">
<table>
<tr>
<td align="left" width="100%">
<?php echo vmText::_('COM_VIRTUEMART_FILTER'); ?>:
<input type="text" name="filter_coupon" value="<?php echo vRequest::getVar('filter_coupon', ''); ?>" />
<button class="btn btn-small" onclick="this.form.submit();"><?php echo vmText::_('COM_VIRTUEMART_GO'); ?></button>
<button class="btn btn-small" onclick="document.adminForm.filter_coupon.value='';"><?php echo vmText::_('COM_VIRTUEMART_RESET'); ?></button>
<?php if($this->showVendors()){
echo $this->vendorList;
} ?>
</td>
</tr>
</table>
</div>
<div id="resultscounter" ><?php echo $this->pagination->getResultsCounter();?></div>
<div id="coupon_usage_cont" ><a style="background-color: #2f6f2f;color: #fff;text-decoration: none;padding: 6px 8px;display: inline-block;margin: 10px;" href="index.php?option=com_virtuemart&view=coupon&cid[]=6&layout=couponsdata">Coupon Usage / Analytics</a></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 width="25%">
<?php echo $this->sort('coupon_code' , 'COM_VIRTUEMART_COUPON_CODE'); ?>
</th>
<th width="16%">
<?php echo $this->sort('percent_or_total' , 'COM_VIRTUEMART_COUPON_PERCENT_TOTAL'); ?>
</th>
<th width="16%">
<?php echo $this->sort('coupon_type' , 'COM_VIRTUEMART_COUPON_TYPE'); ?>
</th>
<th width="16%">
<?php echo $this->sort('coupon_value' , 'COM_VIRTUEMART_VALUE'); ?>
</th>
<th min-width="130px" width="18%">
<?php echo vmText::_('COM_VIRTUEMART_COUPON_VALUE_VALID_AT'); ?>
</th>
<th min-width="100px" width="18%">
<?php echo $this->sort('coupon_used' , 'COM_VIRTUEMART_COUPON_USED'); ?>
</th>
<th><?php echo $this->sort('coupon_start_date' , 'COM_VIRTUEMART_START_DATE'); ?></th>
<th><?php echo $this->sort('coupon_expiry_date' , 'COM_VIRTUEMART_END_DATE'); ?></th>
<th width="20">
<?php echo $this->sort('published' , 'COM_VIRTUEMART_PUBLISHED') ?>
</th>
<th><?php echo $this->sort('virtuemart_coupon_id', 'COM_VIRTUEMART_ID') ?></th>
</tr>
</thead>
<?php
$k = 0;
for ($i=0, $n=count($this->coupons); $i < $n; $i++) {
$row = $this->coupons[$i];
$checked = JHtml::_('grid.id', $i, $row->virtuemart_coupon_id);
$editlink = JROUTE::_('index.php?option=com_virtuemart&view=coupon&task=edit&cid[]=' . $row->virtuemart_coupon_id);
$published = $this->gridPublished( $row, $i );
?>
<tr class="row<?php echo $k; ?>">
<td class="admin-checkbox">
<?php echo $checked; ?>
</td>
<td align="left">
<a href="<?php echo $editlink; ?>"><?php echo $row->coupon_code; ?></a>
</td>
<td>
<?php echo vmText::_('COM_VIRTUEMART_COUPON_'.strtoupper($row->percent_or_total)); ?>
</td>
<td align="left">
<?php echo vmText::_('COM_VIRTUEMART_COUPON_TYPE_'.strtoupper($row->coupon_type)); ?>
</td>
<td>
<?php echo vmText::_($row->coupon_value); ?>
<?php if ( $row->percent_or_total=='percent') echo '%' ;
else echo $this->vendor_currency; ?>
</td>
<td align="left">
<?php echo vmText::_($row->coupon_value_valid); ?> <?php echo $this->vendor_currency; ?>
</td>
<td align="center">
<?php
if( $row->coupon_type=='gift'){
if ($row->coupon_used ) {
echo vmText::_('COM_VIRTUEMART_YES');
} else {
echo vmText::_('COM_VIRTUEMART_NO');
}
}
?>
</td>
<td>
<?php
echo vmJsApi::date( $row->coupon_start_date, 'LC4',true);
?>
</td>
<td>
<?php
echo vmJsApi::date( $row->coupon_expiry_date, 'LC4',true);
?>
</td>
<td align="center">
<?php echo $published; ?>
</td>
<td align="left">
<?php echo vmText::_($row->virtuemart_coupon_id); ?>
</td>
</tr>
<?php
$k = 1 - $k;
}
?>
<tfoot>
<tr>
<td colspan="10">
<?php echo $this->pagination->getListFooter(); ?>
</td>
</tr>
</tfoot>
</table>
</div>
<?php echo $this->addStandardHiddenToForm(); ?>
</form>
<?php AdminUIHelper::endAdminArea(); ?>