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