function GetMenu() { trigger_error('deprecated functions'); gpOutput::GetMenu(); }
function GetMenus() { global $page; ob_start(); gpOutput::GetMenu(); $content = ob_get_clean(); $page->ajaxReplace[] = array('inner', '#admin_menu_wrap', $content); }
/** * 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>'; }
function GetMenu() { gpOutput::GetMenu(); }