本文整理汇总了PHP中gpOutput::GetMenu方法的典型用法代码示例。如果您正苦于以下问题:PHP gpOutput::GetMenu方法的具体用法?PHP gpOutput::GetMenu怎么用?PHP gpOutput::GetMenu使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gpOutput
的用法示例。
在下文中一共展示了gpOutput::GetMenu方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GetMenu
function GetMenu()
{
trigger_error('deprecated functions');
gpOutput::GetMenu();
}
示例2: GetMenus
function GetMenus()
{
global $page;
ob_start();
gpOutput::GetMenu();
$content = ob_get_clean();
$page->ajaxReplace[] = array('inner', '#admin_menu_wrap', $content);
}
示例3: AdminContentPanel
/**
* Output toolbar for admin window
*
*/
function AdminContentPanel()
{
global $langmessage;
echo '<div id="admincontent_panel" class="toolbar cf">';
echo '<div id="admin_menu_wrap">';
gpOutput::GetMenu();
echo '</div>';
echo '<form method="get" action="/index.php/Search" id="panel_search" class="cf">';
echo '<input type="text" value="" name="q">';
echo '<button class="gpabox" type="submit"></button>';
echo '</form>';
echo '</div>';
}
示例4: GetMenu
function GetMenu()
{
gpOutput::GetMenu();
}