MDL-66847 webservice: Correct breadcrumb + title for ws documentation.

This commit is contained in:
Luca Bösch 2019-10-10 10:04:05 +02:00
parent 4e90332195
commit c3fe18506b
3 changed files with 9 additions and 5 deletions

View file

@ -35,17 +35,18 @@ $tokenid = required_param('id', PARAM_INT);
// PAGE settings
$PAGE->set_context($usercontext);
$PAGE->set_url('/user/wsdoc.php');
$PAGE->set_title(get_string('documentation', 'webservice'));
$PAGE->set_heading(get_string('documentation', 'webservice'));
$PAGE->set_title(get_string('wsdocumentation', 'webservice'));
$PAGE->set_heading(get_string('wsdocumentation', 'webservice'));
$PAGE->set_pagelayout('standard');
// nav bar
$PAGE->navbar->ignore_active(true);
$PAGE->navbar->add(get_string('usercurrentsettings'));
$PAGE->navbar->add(get_string('preferences'), new moodle_url('/user/preferences.php'));
$PAGE->navbar->add(get_string('useraccount'));
$PAGE->navbar->add(get_string('securitykeys', 'webservice'),
new moodle_url('/user/managetoken.php',
array('id' => $tokenid, 'sesskey' => sesskey())));
$PAGE->navbar->add(get_string('documentation', 'webservice'));
$PAGE->navbar->add(get_string('wsdocumentation', 'webservice'));
// check web service are enabled
if (empty($CFG->enablewsdocumentation)) {