| Current Path : /home/gotzfrokfn/www/administrator/components/com_virtuemart/views/orderstatus/tmpl/ |
| Current File : /home/gotzfrokfn/www/administrator/components/com_virtuemart/views/orderstatus/tmpl/default.php |
<?php
/**
*
* Description
*
* @package VirtueMart
* @subpackage OrderStatus
* @author Oscar van Eijk
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - 2021 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);
vmLanguage::loadJLang('com_virtuemart_config');
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<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>
<?php echo $this->sort('order_status_name') ?>
</th>
<th>
<?php echo $this->sort('order_status_code') ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ORDER_STATUS_EMAIL_VENDOR'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ORDER_STATUS_EMAIL_SHOPPER'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ORDER_STATUS_EMAIL_LAYOUT'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ORDER_STATUS_EMAIL_ATTACHMENT'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ORDER_STATUS_CREATE_INVOICE'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ORDER_STATUS_ALLOW_EDIT'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ORDER_STATUS_STOCK_HANDLE'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ORDER_STATUS_DO_REFUND'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ORDER_STATUS_DELIVERY_DATE'); ?>
</th>
<th>
<?php echo $this->sort('ordering') ?>
<?php echo $this->saveOrder(); ?>
</th>
<th width="20">
<?php echo vmText::_('COM_VIRTUEMART_PUBLISHED'); ?>
</th>
<th><?php echo $this->sort('virtuemart_orderstate_id', 'COM_VIRTUEMART_ID') ?></th>
</tr>
</thead>
<?php
$k = 0;
for ($i = 0, $n = count($this->orderStatusList); $i < $n; $i++) {
$row = $this->orderStatusList[$i];
$published = $this->gridPublished( $row, $i );
$checked = JHtml::_('grid.id', $i, $row->virtuemart_orderstate_id);
$coreStatus = (in_array($row->order_status_code, $this->lists['vmCoreStatusCode']));
$image = 'admin/checked_out.png';
$image = JHtml::_('image', $image, vmText::_('COM_VIRTUEMART_ORDER_STATUS_CODE_CORE'),'',true);
$checked = ($coreStatus) ?
'<span class="hasTooltip" title="'. vmText::_('COM_VIRTUEMART_ORDER_STATUS_CODE_CORE').'">'. $image .'</span>' :
JHtml::_('grid.id', $i, $row->virtuemart_orderstate_id);
$editlink = JROUTE::_('index.php?option=com_virtuemart&view=orderstatus&task=edit&cid[]=' . $row->virtuemart_orderstate_id);
$deletelink = JROUTE::_('index.php?option=com_virtuemart&view=orderstatus&task=remove&cid[]=' . $row->virtuemart_orderstate_id);
$ordering = $row->ordering ;
$colorStyle = '';
if ($row->order_status_color) {
$colorStyle = 'style="background-color:' . $row->order_status_color.'"';
}
?>
<tr class="row<?php echo $k ; ?>">
<td class="admin-checkbox" <?php echo $colorStyle ?>>
<?php echo $checked; ?>
</td>
<td align="left" >
<?php
$lang =vmLanguage::getLanguage();
if ($lang->hasKey($row->order_status_name)) {
echo '<a href="' . $editlink . '">'. vmText::_($row->order_status_name) .'</a> ('.$row->order_status_name.')';
} else {
echo '<a href="' . $editlink . '">'. $row->order_status_name .'</a> ';
}
?>
</td>
<td align="left">
<?php echo $row->order_status_code; ?>
</td>
<td align="left">
<?php
if (in_array($row->order_status_code, VmConfig::get('email_os_v',array('U','C','R','X'))))
echo '<span class="icon-mail-2"><span></span></span>';
?>
</td>
<td align="left">
<?php
if (in_array($row->order_status_code, VmConfig::get('email_os_s',array('U','C','S','R','X'))))
echo '<span class="icon-mail-2"><span></span></span>';
?>
</td>
<!-- quorvia new email override option -->
<td align="left">
<?php echo $row->order_status_email_layout; ?>
</td>
<td align="left">
<?php
if (in_array($row->order_status_code, VmConfig::get('attach_os',array(''))))
echo '<span class="icon-mail-2"></span><span class="icon-file-2 text-success"><span></span></span>';
?>
</td>
<td align="left">
<?php
if (in_array($row->order_status_code, VmConfig::get('inv_os',array('C'))))
if (in_array($row->order_status_code, VmConfig::get('refund_os',array('R'))))
echo '<span class="icon-file-2 text-error"><span></span></span>';
else echo '<span class="icon-file-2 text-success"><span></span></span>';
?>
</td>
<td align="left">
<?php
if (in_array($row->order_status_code, VmConfig::get('order_allowedit_os', array('P','U'))))
echo '<span class="icon-pencil-2 text-success"><span></span></span>';
else echo '<span class="icon-lock"><span></span></span>';
?>
</td>
<td align="left">
<?php echo vmText::_($this->stockHandelList[$row->order_stock_handle]); ?>
</td>
<td align="left">
<?php
if (in_array($row->order_status_code, VmConfig::get('refund_os',array('R'))))
echo '<span class="icon-undo-2 text-error"><span></span></span>';
?>
</td>
<td align="left">
<?php
$del_date_type= VmConfig::get('del_date_type',array('m'));
if ($del_date_type=='m') $del_date_type=VmConfig::get('inv_os',array('C'));
if (!is_array($del_date_type)) {
$del_date_type = array($del_date_type);
}
if (in_array($row->order_status_code, $del_date_type))
echo '<span class="icon-box-add text-success"><span></span></span>';
?>
</td>
<td align="center" class="order">
<span><?php echo $this->pagination->vmOrderUpIcon($i, $row->ordering, 'orderUp', vmText::_('COM_VIRTUEMART_MOVE_UP')); ?></span>
<span><?php echo $this->pagination->vmOrderDownIcon( $i, $row->ordering,$n, true, 'orderDown', vmText::_('COM_VIRTUEMART_MOVE_DOWN')); ?></span>
<input class="ordering" type="text" name="order[<?php echo $row->virtuemart_orderstate_id?>]" id="order[<?php echo $i?>]" size="5" value="<?php echo $row->ordering; ?>" style="text-align: center" />
</td>
<td align="center"><?php echo $published; ?></td>
<td width="10">
<?php echo $row->virtuemart_orderstate_id; ?>
</td>
</tr>
<?php
$k = 1 - $k;
}
?>
</table>
</div>
<?php echo $this->addStandardHiddenToForm(); ?>
</form>
<?php AdminUIHelper::endAdminArea(); ?>