本文整理汇总了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);
}
示例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);
}
示例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);
}