| Current Path : /home/gotzfrokfn/www/templates/gotz-tpl/html/com_virtuemart/cart/ |
| Current File : /home/gotzfrokfn/www/templates/gotz-tpl/html/com_virtuemart/cart/default_shopperform.php |
<?php
/**
*
* Layout for the shopper form to change the current shopper
*
* @package VirtueMart
* @subpackage Cart
* @author Maik K�nnemann
*
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2004 - 2013 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: cart.php 2458 2013-07-16 18:23:28Z kkmediaproduction $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
?>
<h3><?php echo vmText::_ ('COM_VIRTUEMART_CART_CHANGE_SHOPPER'); ?></h3>
<form action="<?php echo JRoute::_ ('index.php'); ?>" method="post" class="inline">
<table cellspacing="0" cellpadding="0" border="0">
<tr style="border:0px;">
<td style="border:0px;">
<?php
if (!class_exists ('VirtueMartModelUser')) {
require(VMPATH_ADMIN . DS . 'models' . DS . 'user.php');
}
$userList = $this->getUserList();
$currentUser = $this->cart->user->virtuemart_user_id;
echo JHtml::_('Select.genericlist', $userList, 'userID', 'class="vm-chzn-select" style="width: 200px"', 'id', 'displayedName', $currentUser);
$adminID = JFactory::getSession()->get('vmAdminID');
$instance = JFactory::getUser();
?>
</td>
<td style="border:0px;">
<input type="submit" name="changeShopper" title="<?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?>" value="<?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?>" class="button" style="margin-left: 10px;"/>
<?php if(isset($adminID) && $instance->id != $adminID) { ?>
<span style="margin-left: 20px;"><b><?php echo vmText::_('COM_VIRTUEMART_CART_ACTIVE_ADMIN') .' '.JFactory::getUser($adminID)->name; ?></b></span>
<?php } ?>
<?php echo JHtml::_( 'form.token' ); ?>
<input type="hidden" name="view" value="cart"/>
<input type="hidden" name="task" value="changeShopper"/>
</td>
</tr>
</table>
</form>
<br />