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


PHP page_get_doc_link_path函數代碼示例

本文整理匯總了PHP中page_get_doc_link_path函數的典型用法代碼示例。如果您正苦於以下問題:PHP page_get_doc_link_path函數的具體用法?PHP page_get_doc_link_path怎麽用?PHP page_get_doc_link_path使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: page_doc_link

/**
 * Returns a string containing a link to the user documentation for the current page.
 *
 * Also contains an icon by default. Shown to teachers and admin only.
 *
 * @param string $text The text to be displayed for the link
 * @return string The link to user documentation for this current page
 */
function page_doc_link($text = '')
{
    global $OUTPUT, $PAGE;
    $path = page_get_doc_link_path($PAGE);
    if (!$path) {
        return '';
    }
    return $OUTPUT->doc_link($path, $text);
}
開發者ID:MoodleMetaData,項目名稱:MoodleMetaData,代碼行數:17,代碼來源:weblib.php

示例2: page_doc_link

 /**
  * Returns the Moodle docs link to use for this page.
  *
  * @since Moodle 2.5.1 2.6
  * @param string $text
  * @return string
  */
 public function page_doc_link($text = null) {
     if ($text === null) {
         $text = get_string('moodledocslink');
     }
     $path = page_get_doc_link_path($this->page);
     if (!$path) {
         return '';
     }
     return $this->doc_link($path, $text);
 }
開發者ID:afgal,項目名稱:moodle-1,代碼行數:17,代碼來源:outputrenderers.php

示例3: page_doc_link

 /**
  * Returns the Moodle docs link to use for this page.
  *
  * @since 2.5.1 2.6
  * @param string $text
  * @return string
  */
 public function page_doc_link($footext = null)
 {
     $title = get_string('moodledocslink');
     $path = page_get_doc_link_path($this->page);
     if (!$path) {
         return '';
     }
     return $this->doc_link($path, '', $title);
 }
開發者ID:OctaveBabel,項目名稱:moodle-itop,代碼行數:16,代碼來源:renderers.php


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