mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
MDL-66847 webservice: Correct breadcrumb + title for ws documentation.
This commit is contained in:
parent
4e90332195
commit
c3fe18506b
3 changed files with 9 additions and 5 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue