示例#1
0
 function GetMenu()
 {
     trigger_error('deprecated functions');
     \gp\tool\Output::GetMenu();
 }
示例#2
0
 /**
  * Output toolbar for admin window
  *
  */
 private function AdminContentPanel()
 {
     global $langmessage;
     echo '<div id="admincontent_panel" class="toolbar cf">';
     echo '<div id="admin_menu_wrap">';
     \gp\tool\Output::GetMenu();
     echo '</div>';
     self::ToolbarSearch();
     echo '</div>';
 }
示例#3
0
 /**
  * Send updated page manager content via ajax
  * we're replacing more than just the content
  *
  */
 public function MenuJsonResponse($replace_id, $content)
 {
     $this->page->ajaxReplace[] = array('gp_menu_prep', '', '');
     $this->page->ajaxReplace[] = array('inner', $replace_id, $content);
     $this->page->ajaxReplace[] = array('gp_menu_refresh', '', '');
     ob_start();
     \gp\tool\Output::GetMenu();
     $content = ob_get_clean();
     $this->page->ajaxReplace[] = array('inner', '#admin_menu_wrap', $content);
 }