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/customer_set.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');
?><form action="<?php echo
hikashop_completeLink('order&task=customer_save')
;?>" method="post" name="hikashop_form"
id="hikashop_form">
<div class="hika_confirm">
	<?php echo JText::_('HIKA_CONFIRM_USER')?><br/>
	<table class="admintable table hika_options">
		<tbody>
			<tr>
				<td class="key"><label><?php echo
JText::_('HIKA_NAME'); ?></label></td>
				<td id="hikashop_order_customer_name"><?php echo
$this->rows->name; ?></td>
			</tr>
			<tr>
				<td class="key"><label><?php echo
JText::_('HIKA_EMAIL'); ?></label></td>
				<td id="hikashop_order_customer_email"><?php echo
$this->rows->user_email; ?></td>
			</tr>
			<tr>
				<td class="key"><label><?php echo
JText::_('ID'); ?></label></td>
				<td id="hikashop_order_customer_id"><?php echo
$this->rows->user_id; ?></td>
			</tr>
			<tr>
				<td class="key"><label><?php echo
JText::_('SET_USER_ADDRESS'); ?></label></td>
				<td><?php echo JHTML::_('hikaselect.booleanlist',
'set_user_address', '', 0); ?></td>
			</tr>
			<tr>
				<td class="key"><label><?php echo
JText::_('HISTORY'); ?></label></td>
				<td>
					<span><input
onchange="window.orderMgr.orderadditional_history_changed(this);"
type="checkbox"
id="hikashop_history_orderadditional_store"
name="data[history][store_data]"
value="1"/><label
for="hikashop_history_orderadditional_store"
style="display:inline-block"><?php echo
JText::_('SET_HISTORY_MESSAGE');?></label></span><br/>
					<textarea id="hikashop_history_orderadditional_msg"
name="data[history][history_data]"
style="display:none;"></textarea>
				</td>
			</tr>
		</tbody>
	</table>
	<input type="hidden"
name="data[order][order_user_id]" value="<?php echo
$this->rows->user_id; ?>"/>
	<input type="hidden" name="cid"
value="<?php echo $this->order_id; ?>"/>
	<input type="hidden" name="order_id"
value="<?php echo $this->order_id; ?>"/>
	<input type="hidden" name="option"
value="<?php echo HIKASHOP_COMPONENT; ?>" />
	<input type="hidden" name="task"
value="customer_save" />
	<input type="hidden" name="finalstep"
value="1" />
	<input type="hidden" name="single"
value="1" />
	<input type="hidden" name="ctrl"
value="order" />
	<input type="hidden" name="tmpl"
value="component" />
	<?php echo JHTML::_('form.token'); ?>
	<div class="hika_confirm_btn">
		<button onclick="hikashop.submitform('customer_save',
'hikashop_form');" class="btn"><img
src="<?php echo HIKASHOP_IMAGES ?>ok.png"
style="vertical-align:middle" alt=""/>
<span><?php echo Jtext::_('OK');
?></span></button>
	</div>
</div>
<script type="text/javascript">
if(!window.orderMgr)
	window.orderMgr = {};
window.orderMgr.orderadditional_history_changed = function(el) {
	var fields = ['hikashop_history_orderadditional_msg'],
displayValue = '';
	if(!el.checked) displayValue = 'none';
	window.hikashop.setArrayDisplay(fields, displayValue);
}
</script>
</form>