Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/administrator/components/com_hikashop/views/order/tmpl/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/administrator/components/com_hikashop/views/order/tmpl/show_general.php

<?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');
?>	<legend><?php echo JText::_('MAIN_INFORMATION');
?></legend>
<?php
$show_url =
'order&task=show&subtask=general&cid='.$this->order->order_id;
$save_url =
'order&task=save&subtask=general&cid='.$this->order->order_id;
$update_url =
'order&task=edit&subtask=general&cid='.$this->order->order_id;
if(!isset($this->edit) || $this->edit !== true ) {
?>		<div class="hika_edit"><a href="<?php
echo hikashop_completeLink($update_url, true);?>"
onclick="return
window.hikashop.get(this,'hikashop_order_field_general');"><img
src="<?php echo HIKASHOP_IMAGES; ?>edit.png"
alt=""/><span><?php echo
JText::_('HIKA_EDIT'); ?></span></a></div>
<?php
} else {
?>		<div class="hika_edit">
			<a href="<?php echo hikashop_completeLink($save_url,
true);?>" onclick="return
window.hikashop.form(this,'hikashop_order_field_general');"><img
src="<?php echo HIKASHOP_IMAGES; ?>ok.png"
alt=""/><span><?php echo
JText::_('HIKA_SAVE'); ?></span></a>
			<a href="<?php echo hikashop_completeLink($show_url,
true);?>" onclick="return
window.hikashop.get(this,'hikashop_order_field_general');"><img
src="<?php echo HIKASHOP_IMAGES; ?>cancel.png"
alt=""/><span><?php echo
JText::_('HIKA_CANCEL'); ?></span></a>
		</div>
<?php
}
?>
	<table class="admintable table">
		<tr class="hikashop_order_ordernumber">
			<td class="key"><label><?php echo
JText::_('ORDER_NUMBER'); ?></label></td>
			<td><span><?php echo $this->order->order_number;
?></span></td>
		</tr>
		<tr class="hikashop_order_invoicenumber">
			<td class="key"><label><?php echo
JText::_('INVOICE_NUMBER'); ?></label></td>
			<td><span><?php echo
@$this->order->order_invoice_number; ?></span></td>
		</tr>
		<tr class="hikashop_order_status">
			<td class="key"><label
for="data[order][order_status]"><?php echo
JText::_('ORDER_STATUS'); ?></label></td>
			<td class="hikashop_order_status"><?php
				if(!isset($this->edit) || $this->edit !== true ) {
					?><span><?php echo
hikashop_orderStatus($this->order->order_status);
?></span><?php
				} else {
					$extra =
'onchange="window.orderMgr.status_changed(this);"';
					echo
$this->order_status->display('data[order][order_status]',
$this->order->order_status, $extra);
				}
			?></td>
		</tr>
		<tr id="hikashop_order_notify_line"
style="display:none;"
class="hikashop_order_notify">
			<td class="key"><label
for="data[notify]"><?php echo
JText::_('NOTIFICATION'); ?></label></td>
			<td><input type="checkbox"
id="data[notify]" name="data[notify]"/><label
style="display:inline-block"
for="data[notify]"><?php echo
JText::_('NOTIFY_CUSTOMER'); ?></label></td>
		</tr>
		<tr class="hikashop_order_created">
			<td class="key"><label><?php echo
JText::_('DATE'); ?></label></td>
			<td><span><?php echo
hikashop_getDate($this->order->order_created,'%Y-%m-%d
%H:%M');?></span></td>
		</tr>
		<tr class="hikashop_order_id">
			<td class="key"><label><?php echo
JText::_('ID'); ?></label></td>
			<td><span><?php echo $this->order->order_id;
?></span></td>
		</tr>
<?php
if(isset($this->edit) && $this->edit === true ) {
?>
		<tr class="hikashop_order_history">
			<td class="key"><label><?php echo
JText::_('HISTORY'); ?></label></td>
			<td>
				<span><input
onchange="window.orderMgr.general_history_changed(this);"
type="checkbox" id="hikashop_history_general_store"
name="data[history][store_data]"
value="1"/><label
for="hikashop_history_general_store"
style="display:inline-block"><?php echo
JText::_('SET_HISTORY_MESSAGE');?></label></span><br/>
				<textarea id="hikashop_history_general_msg"
name="data[history][msg]"
style="display:none;"></textarea>
			</td>
		</tr>
<?php
}
?>
	</table>
<?php
if(isset($this->edit) && $this->edit === true ) {
?>
<script type="text/javascript">
window.orderMgr.status_changed = function(el) {
	var fields = ['hikashop_order_notify_line'], displayValue =
'';
	if(el.value == '<?php echo $this->order->order_status;
?>')
		displayValue = 'none';
	window.hikashop.setArrayDisplay(fields, displayValue);
}
window.orderMgr.general_history_changed = function(el) {
	var fields = ['hikashop_history_general_msg'], displayValue =
'';
	if(!el.checked) displayValue = 'none';
	window.hikashop.setArrayDisplay(fields, displayValue);
}
</script>
	<input type="hidden" name="data[general]"
value="1"/>
	<?php echo JHTML::_('form.token')."\r\n";
}