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

@ -120,3 +120,4 @@ global,core_calendar
globalevent,core_calendar
globalevents,core_calendar
eventtypeglobal,core_calendar
documentation,core_webservice

View File

@ -60,7 +60,6 @@ $string['deletetokenconfirm'] = 'Do you really want to delete this web service t
$string['disabledwarning'] = 'All web service protocols are disabled. The "Enable web services" setting can be found in Advanced features.';
$string['doc'] = 'Documentation';
$string['docaccessrefused'] = 'You are not allowed to see the documentation for this token';
$string['documentation'] = 'web service documentation';
$string['downloadfiles'] = 'Can download files';
$string['downloadfiles_help'] = 'If enabled, any user can download files with their security keys. Of course they are restricted to the files they are allowed to download in the site.';
$string['editaservice'] = 'Edit service';
@ -241,3 +240,6 @@ $string['wsdocumentationintro'] = 'To create a client we advise you to read the
$string['wsdocumentationlogin'] = 'or enter your web service username and password:';
$string['wspassword'] = 'Web service password';
$string['wsusername'] = 'Web service username';
// Deprecated since Moodle 3.9.
$string['documentation'] = 'web service documentation';

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)) {