mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-27695 Documentation : updated the moodle docs link at the footer of pages to point to new docs url
This commit is contained in:
parent
a56c68e3f4
commit
3b6711d5ce
@ -2816,10 +2816,14 @@ function convert_tabrows_to_tree($tabrows, $selected, $inactive, $activated) {
|
||||
*/
|
||||
function get_docs_url($path) {
|
||||
global $CFG;
|
||||
//derive branch from the first three letters of version.php's $release with the period taken out.($CFG->release isn't populated yet during upgrade)
|
||||
include($CFG->dirroot.'/version.php');
|
||||
preg_match('/^(.)\.(.)/', $release, $matches);
|
||||
$branch = $matches[1].$matches[2];
|
||||
if (!empty($CFG->docroot)) {
|
||||
return $CFG->docroot . '/' . current_language() . '/' . $path;
|
||||
return $CFG->docroot . '/' . $branch . '/' . current_language() . '/' . $path;
|
||||
} else {
|
||||
return 'http://docs.moodle.org/en/'.$path;
|
||||
return 'http://docs.moodle.org/'. $branch . '/en/' . $path;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user