%PDF- %PDF-
| Direktori : /home1/lightco1/www/administrator/components/com_virtuemart/views/state/tmpl/ |
| Current File : //home1/lightco1/www/administrator/components/com_virtuemart/views/state/tmpl/default.php |
<?php
/**
*
* Description
*
* @package VirtueMart
* @subpackage State
* @author RickG, Max Milbers
* @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 8670 2015-01-27 14:10:38Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
AdminUIHelper::startAdminArea($this);
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<div id="editcell">
<div><?php echo JHtml::_('link','index.php?option=com_virtuemart&view=country&virtuemart_country_id='.$this->virtuemart_country_id,vmText::sprintf('COM_VIRTUEMART_STATES_COUNTRY',$this->country_name)); ?></div>
<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 vmText::_('COM_VIRTUEMART_STATE_NAME'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_ZONE_ASSIGN_CURRENT_LBL'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_STATE_2_CODE'); ?>
</th>
<th>
<?php echo vmText::_('COM_VIRTUEMART_STATE_3_CODE'); ?>
</th>
<th width="20px">
<?php echo vmText::_('COM_VIRTUEMART_PUBLISHED'); ?>
</th>
<th width="20px">
<?php echo $this->sort('virtuemart_state_id', 'COM_VIRTUEMART_ID') ?>
</th>
</tr>
</thead>
<?php
$k = 0;
for ($i=0, $n=count( $this->states ); $i < $n; $i++) {
$row = $this->states[$i];
$checked = JHtml::_('grid.id', $i, $row->virtuemart_state_id,null,'virtuemart_state_id');
$published = JHtml::_('grid.published', $row, $i);
$editlink = JROUTE::_('index.php?option=com_virtuemart&view=state&task=edit&virtuemart_state_id=' . $row->virtuemart_state_id);
?>
<tr class="row<?php echo $k ; ?>">
<td class="admin-checkbox">
<?php echo $checked; ?>
</td>
<td align="left">
<a href="<?php echo $editlink; ?>"><?php echo $row->state_name; ?></a>
</td>
<td align="left">
<?php echo $row->virtuemart_worldzone_id; ?>
</td>
<td>
<?php echo $row->state_2_code; ?>
</td>
<td>
<?php echo $row->state_3_code; ?>
</td>
<td>
<?php echo $published; ?>
</td>
<td align="left">
<?php echo $row->virtuemart_state_id; ?>
</td>
</tr>
<?php
$k = 1 - $k;
}
?>
<tfoot>
<tr>
<td colspan="10">
<?php echo $this->pagination->getListFooter(); ?>
</td>
</tr>
</tfoot>
</table>
</div>
<input type="hidden" name="virtuemart_country_id" value="<?php echo $this->virtuemart_country_id; ?>" />
<?php echo $this->addStandardHiddenToForm(); ?>
</form>
<?php AdminUIHelper::endAdminArea(); ?>