當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Util::getNavigationLink方法代碼示例

本文整理匯總了PHP中PMA\libraries\Util::getNavigationLink方法的典型用法代碼示例。如果您正苦於以下問題:PHP Util::getNavigationLink方法的具體用法?PHP Util::getNavigationLink怎麽用?PHP Util::getNavigationLink使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PMA\libraries\Util的用法示例。


在下文中一共展示了Util::getNavigationLink方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _links

 /**
  * Creates the code for displaying the links
  * at the top of the navigation panel
  *
  * @return string HTML code for the links
  */
 private function _links()
 {
     // always iconic
     $showIcon = true;
     $showText = false;
     $retval = '<!-- LINKS START -->';
     $retval .= '<div id="navipanellinks">';
     $retval .= PMA\libraries\Util::getNavigationLink('index.php' . URL::getCommon(), $showText, __('Home'), $showIcon, 'b_home.png');
     // if we have chosen server
     if ($GLOBALS['server'] != 0) {
         // Logout for advanced authentication
         if ($GLOBALS['cfg']['Server']['auth_type'] != 'config') {
             $text = __('Log out');
         } else {
             $text = __('Empty session data');
         }
         $link = 'logout.php' . $GLOBALS['url_query'];
         $retval .= PMA\libraries\Util::getNavigationLink($link, $showText, $text, $showIcon, 's_loggoff.png', '', true, '', array('logout'));
     }
     $retval .= PMA\libraries\Util::getNavigationLink(PMA\libraries\Util::getDocuLink('index'), $showText, __('phpMyAdmin documentation'), $showIcon, 'b_docs.png', '', false, 'documentation');
     $retval .= PMA\libraries\Util::getNavigationLink(PMA\libraries\Util::getMySQLDocuURL('', ''), $showText, __('Documentation'), $showIcon, 'b_sqlhelp.png', '', false, 'mysql_doc');
     $retval .= PMA\libraries\Util::getNavigationLink('#', $showText, __('Navigation panel settings'), $showIcon, 's_cog.png', 'pma_navigation_settings_icon', false, '', defined('PMA_DISABLE_NAVI_SETTINGS') ? array('hide') : array());
     $retval .= PMA\libraries\Util::getNavigationLink('#', $showText, __('Reload navigation panel'), $showIcon, 's_reload.png', 'pma_navigation_reload');
     $retval .= '</div>';
     $retval .= '<!-- LINKS ENDS -->';
     return $retval;
 }
開發者ID:phpmyadmin,項目名稱:phpmyadmin,代碼行數:33,代碼來源:NavigationHeader.php

示例2: _controls

 /**
  * Creates the code for displaying the controls
  * at the top of the navigation tree
  *
  * @return string HTML code for the controls
  */
 private function _controls()
 {
     // always iconic
     $showIcon = true;
     $showText = false;
     $retval = '<!-- CONTROLS START -->';
     $retval .= '<li id="navigation_controls_outer">';
     $retval .= '<div id="navigation_controls">';
     $retval .= Util::getNavigationLink('#', $showText, __('Collapse all'), $showIcon, 's_collapseall.png', 'pma_navigation_collapse');
     $syncImage = 's_unlink.png';
     $title = __('Link with main panel');
     if ($GLOBALS['cfg']['NavigationLinkWithMainPanel']) {
         $syncImage = 's_link.png';
         $title = __('Unlink from main panel');
     }
     $retval .= Util::getNavigationLink('#', $showText, $title, $showIcon, $syncImage, 'pma_navigation_sync');
     $retval .= '</div>';
     $retval .= '</li>';
     $retval .= '<!-- CONTROLS ENDS -->';
     return $retval;
 }
開發者ID:wp-cloud,項目名稱:phpmyadmin,代碼行數:27,代碼來源:NavigationTree.php


注:本文中的PMA\libraries\Util::getNavigationLink方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。