0byt3m1n1-V2
Path:
/
home
/
academiac
/
www
/
administrator
/
components
/
com_virtuemart
/
views
/
user
/
tmpl
/
[
Home
]
File: default.php
<?php /** * * User listing view * * @package VirtueMart * @subpackage User * @author Oscar van Eijk * @link http://www.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 6477 2012-09-24 14:33:54Z Milbo $ */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die('Restricted access'); AdminUIHelper::startAdminArea($this); ?> <form action="<?php echo JRoute::_( 'index.php' );?>" method="post" name="adminForm" id="adminForm"> <div id="header"> <div id="filterbox"> <table> <tr> <td width="100%"> <?php echo JText::_('COM_VIRTUEMART_FILTER'); ?>: <input type="text" name="search" id="search" value="<?php echo $this->lists['search'];?>" class="text_area" onchange="document.adminForm.submit();" /> <?php $selected = JRequest::getString('searchTable','juser'); $searchOptionTables = array( '0' => array('searchTable' => 'juser', 'searchTable_name' => JText::_('COM_VIRTUEMART_ONLY_JUSER')), '1' => array('searchTable' => 'all', 'searchTable_name' => JText::_('JALL')) ); echo JHTML::_('Select.genericlist', $searchOptionTables, 'searchTable', '', 'searchTable', 'searchTable_name', $selected ); ?> <button onclick="this.form.submit();"><?php echo JText::_('COM_VIRTUEMART_GO'); ?></button> <button onclick="document.adminForm.search.value='';this.form.submit();"><?php echo JText::_('COM_VIRTUEMART_RESET'); ?></button> </td> </tr> </table> </div> <div id="resultscounter"><?php echo $this->pagination->getResultsCounter();?></div> </div> <div id="editcell"> <table class="adminlist" cellspacing="0" cellpadding="0"> <thead> <tr> <th width="10"> <input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count($this->userList); ?>);" /> </th> <th><?php echo $this->sort('ju.username', 'COM_VIRTUEMART_USERNAME') ?></th> <th><?php echo $this->sort('ju.name', 'COM_VIRTUEMART_USER_DISPLAYED_NAME') ?></th> <th><?php echo JText::_('COM_VIRTUEMART_EMAIL'); ?></th> <th><?php echo JText::_('COM_VIRTUEMART_USER_GROUP'); ?></th> <th><?php echo $this->sort('shopper_group_name', 'COM_VIRTUEMART_SHOPPERGROUP') ?></th> <?php if(Vmconfig::get('multix','none')!=='none'){ ?> <th width="80"><?php echo JText::_('COM_VIRTUEMART_USER_IS_VENDOR'); ?></th> <?php } ?> <th><?php echo JText::_('COM_VIRTUEMART_ID') ?></th> </tr> </thead> <?php $k = 0; for ($i = 0, $n = count($this->userList); $i < $n; $i++) { $row = $this->userList[$i]; $checked = JHTML::_('grid.id', $i, $row->id); $editlink = JROUTE::_('index.php?option=com_virtuemart&view=user&task=edit&virtuemart_user_id[]=' . $row->id); $is_vendor = $this->toggle($row->is_vendor, $i, 'toggle.user_is_vendor'); ?> <tr class="row<?php echo $k ; ?>"> <td> <?php echo $checked; ?> </td> <td align="left"> <a href="<?php echo $editlink; ?>"><?php echo $row->username; ?></a> </td> <td align="left"> <?php echo $row->name; ?> </td> <td align="left"> <?php echo $row->email; ?> </td> <td align="left"> <?php echo $this->perm->getPermissions($row->id); // if(empty($row->perms)) $row->perms = 'shopper'; // echo $row->perms . ' / (' . $row->usertype . ')'; ?> </td> <td align="left"> <?php if(empty($row->shopper_group_name)) $row->shopper_group_name = $this->defaultShopperGroup; echo $row->shopper_group_name; ?> </td> <?php if(Vmconfig::get('multix','none')!=='none'){ ?> <td align="center"> <?php echo $is_vendor; ?> </td> <?php } ?> <td align="right"> <?php echo $row->id; ?> </td> </tr> <?php $k = 1 - $k; } ?> <tfoot> <tr> <td colspan="11"> <?php echo $this->pagination->getListFooter(); ?> </td> </tr> </tfoot> </table> </div> <?php echo $this->addStandardHiddenToForm(); ?> </form> <?php AdminUIHelper::endAdminArea(); ?>
©
2018.