Ejemplo n.º 1
0
*
* @package	VirtueMart
* @subpackage Country
* @author RickG
* @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: edit.php 8508 2014-10-22 18:57:14Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
AdminUIHelper::startAdminArea($this);
AdminUIHelper::imitateTabs('start', 'COM_VIRTUEMART_COUNTRY_DETAILS');
?>


<form action="index.php" method="post" name="adminForm" id="adminForm">


<div class="col50">
	<fieldset>
	<legend><?php 
echo vmText::_('COM_VIRTUEMART_COUNTRY_DETAILS');
?>
</legend>
	<table class="admintable">
		<?php 
Ejemplo n.º 2
0
VmConfig::loadJLang('com_virtuemart.sys');
VmConfig::loadJLang('com_virtuemart');
$update = vRequest::getInt('update', 0);
$option = vRequest::getString('option');
if ($option == 'com_virtuemart') {
    if (!class_exists('AdminUIHelper')) {
        require VMPATH_ADMIN . DS . 'helpers' . DS . 'adminui.php';
    }
    if (!class_exists('JToolBarHelper')) {
        require JPATH_ADMINISTRATOR . DS . 'includes' . DS . 'toolbar.php';
    }
    if (!class_exists('VirtuemartViewUpdatesMigration')) {
        require VMPATH_ADMIN . DS . 'views' . DS . 'updatesmigration' . DS . 'view.html.php';
    }
    $view = new VirtuemartViewUpdatesMigration();
    AdminUIHelper::startAdminArea($view);
}
?>


	<table
		width="100%"
		border="0">
		<tr>
			<td
				valign="top"><a
					href="http://virtuemart.net"
					target="_blank"> <img
						border="0"
						align="left" style="margin-right: 20px"
						src="components/com_virtuemart/assets/images/vm_menulogo.png"
Ejemplo n.º 3
0
*
* @package	VirtueMart
* @subpackage
* @author
* @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 5972 2012-04-30 14:44:24Z electrocity $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
AdminUIHelper::startAdminArea();
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
	<div id="header">
		<div id="filterbox">
		<table>
		  <tr>
			 <td align="left">
				<?php 
echo $this->displayDefaultViewSearch('filter_product');
?>
				<?php 
echo $this->lists['stockfilter'];
?>
			 </td>
		  </tr>
Ejemplo n.º 4
0
 /**
  * Set pages submenus.
  *
  * @param
  *        	$set
  */
 static function setSubmenu($set)
 {
     AImporter::helper('adminui');
     AdminUIHelper::startAdminArea();
 }