本文整理汇总了PHP中AdminUIHelper::startAdminArea方法的典型用法代码示例。如果您正苦于以下问题:PHP AdminUIHelper::startAdminArea方法的具体用法?PHP AdminUIHelper::startAdminArea怎么用?PHP AdminUIHelper::startAdminArea使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AdminUIHelper
的用法示例。
在下文中一共展示了AdminUIHelper::startAdminArea方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: defined
*
* @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
示例2: VirtuemartViewUpdatesMigration
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"
示例3: defined
*
* @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>
示例4: setSubmenu
/**
* Set pages submenus.
*
* @param
* $set
*/
static function setSubmenu($set)
{
AImporter::helper('adminui');
AdminUIHelper::startAdminArea();
}