0byt3m1n1-V2
Path:
/
home
/
academiac
/
www
/
administrator
/
components
/
com_virtuemart
/
views
/
custom
/
tmpl
/
[
Home
]
File: default.php
<?php /** * * Description * * @package VirtueMart * @subpackage * @author Max Milbers, Roland? * @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 2978 2011-04-06 14:21:19Z alatak $ */ AdminUIHelper::startAdminArea($this); jimport('joomla.filesystem.file'); /* Get the component name */ $option = JRequest::getWord('option'); /* Load some variables */ $keyword = JRequest::getWord('keyword', null); ?> <form action="index.php" method="post" name="adminForm" id="adminForm"> <div id="header"> <div> <?php if (JRequest::getInt('virtuemart_product_id', false)) echo JHTML::_('link', JRoute::_('index.php?option='.$option.'&view=custom',FALSE), JText::_('COM_VIRTUEMART_PRODUCT_FILES_LIST_RETURN')); echo $this->customs->customsSelect ; echo JText::_('COM_VIRTUEMART_SEARCH_LBL') .' '.JText::_('COM_VIRTUEMART_TITLE') ?> <input type="text" value="<?php echo $keyword; ?>" name="keyword" size="25" class="inputbox" /> <input type="hidden" name="option" value="<?php echo $option; ?>" /> <input type="hidden" name="view" value="custom" /> <input class="button" type="submit" name="search" value="<?php echo JText::_('COM_VIRTUEMART_SEARCH_TITLE')?>" /> </div> </div> <?php $customs = $this->customs->items; //$roles = $this->customlistsroles; ?> <table class="adminlist" cellspacing="0" cellpadding="0"> <thead> <tr> <th><input type="checkbox" name="toggle" value="" onclick="checkAll('<?php echo count($customs); ?>')" /></th> <th><?php echo JText::_('COM_VIRTUEMART_CUSTOM_PARENT'); ?></th> <th><?php echo JText::_('COM_VIRTUEMART_TITLE'); ?></th> <th><?php echo JText::_('COM_VIRTUEMART_CUSTOM_FIELD_DESCRIPTION'); ?></th> <th><?php echo JText::_('COM_VIRTUEMART_CUSTOM_FIELD_TYPE'); ?></th> <th><?php echo JText::_('COM_VIRTUEMART_CUSTOM_IS_CART_ATTRIBUTE'); ?></th> <th><?php echo JText::_('COM_VIRTUEMART_CUSTOM_ADMIN_ONLY'); ?></th> <th><?php echo JText::_('COM_VIRTUEMART_CUSTOM_IS_HIDDEN'); ?></th> <th> <?php echo $this->sort('ordering') ?> <?php echo JHTML::_('grid.order', $customs ); ?> </th> <th><?php echo JText::_('COM_VIRTUEMART_PUBLISHED'); ?></th> <th><?php echo $this->sort('virtuemart_custom_id', 'COM_VIRTUEMART_ID') ?></th> </tr> </thead> <tbody> <?php if ($n = count($customs)) { $i = 0; $k = 0; foreach ($customs as $key => $custom) { $checked = JHTML::_('grid.id', $i , $custom->virtuemart_custom_id,false,'virtuemart_custom_id'); if (!is_null($custom->virtuemart_custom_id)) $published = JHTML::_('grid.published', $custom, $i ); else $published = ''; ?> <tr class="row<?php echo $k ; ?>"> <!-- Checkbox --> <td><?php echo $checked; ?></td> <?php $link = "index.php?view=custom&keyword=".urlencode($keyword)."&custom_parent_id=".$custom->custom_parent_id."&option=".$option; ?> <td><?php $lang = JFactory::getLanguage(); $text = $lang->hasKey($custom->custom_parent_title) ? JText::_($custom->custom_parent_title) : $custom->custom_parent_title; echo JHTML::_('link', JRoute::_($link,FALSE),$text, array('title' => JText::_('COM_VIRTUEMART_FILTER_BY').' '.$text)); ?></td> <!-- Product name --> <?php $link = "index.php?option=com_virtuemart&view=custom&task=edit&virtuemart_custom_id=".$custom->virtuemart_custom_id; if ($custom->is_cart_attribute) $cartIcon= 'default'; else $cartIcon= 'default-off'; ?> <td><?php echo JHTML::_('link', JRoute::_($link, FALSE), $custom->custom_title, array('title' => JText::_('COM_VIRTUEMART_EDIT').' '.$custom->custom_title)); ?></td> <td><?php echo $custom->custom_field_desc; ?></td> <td><?php echo $custom->field_type_display; ?></td> <td><span class="vmicon vmicon-16-<?php echo $cartIcon ?>"></span></td> <td> <a href="javascript:void(0);" onclick="return listItemTask('cb<?php echo $i;?>','toggle.admin_only')" title="<?php echo ($custom->admin_only ) ? JText::_('COM_VIRTUEMART_YES') : JText::_('COM_VIRTUEMART_NO');?>"> <span class="vmicon <?php echo ( $custom->admin_only ? 'vmicon-16-checkin' : 'vmicon-16-bug' );?>"></span></a></td> <td><a href="javascript:void(0);" onclick="return listItemTask('cb<?php echo $i;?>','toggle.is_hidden')" title="<?php echo ($custom->is_hidden ) ? JText::_('COM_VIRTUEMART_YES') : JText::_('COM_VIRTUEMART_NO');?>"> <span class="vmicon <?php echo ( $custom->is_hidden ? 'vmicon-16-checkin' : 'vmicon-16-bug' );?>"></span></a></td> <td align="center" class="order"> <span><?php echo $this->pagination->orderUpIcon($i, true, 'orderUp', JText::_('COM_VIRTUEMART_MOVE_UP')); ?></span> <span><?php echo $this->pagination->orderDownIcon( $i, $n, true, 'orderDown', JText::_('COM_VIRTUEMART_MOVE_DOWN')); ?></span> <input class="ordering" type="text" name="order[<?php echo $i?>]" id="order[<?php echo $i?>]" size="5" value="<?php echo $custom->ordering; ?>" style="text-align: center" /> </td> <td><?php echo $published; ?></td> <td><?php echo $custom->virtuemart_custom_id; ?></td> </tr> <?php $k = 1 - $k; $i++; } } ?> </tbody> <tfoot> <tr> <td colspan="16"> <?php echo $this->pagination->getListFooter(); ?> </td> </tr> </tfoot> </table> <!-- Hidden Fields --> <input type="hidden" name="task" value="" /> <?php if (JRequest::getInt('virtuemart_product_id', false)) { ?> <input type="hidden" name="virtuemart_product_id" value="<?php echo JRequest::getInt('virtuemart_product_id',0); ?>" /> <?php } ?> <input type="hidden" name="option" value="com_virtuemart" /> <input type="hidden" name="view" value="custom" /> <input type="hidden" name="boxchecked" value="0" /> <input type="hidden" name="filter_order" value="<?php //echo $this->lists['order']; ?>" /> <input type="hidden" name="filter_order_Dir" value="<?php //echo $this->lists['order_Dir']; ?>" /> <?php echo JHTML::_( 'form.token' ); ?> </form> <?php AdminUIHelper::endAdminArea(); ?>
©
2018.