mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 08:23:01 +02:00
MDL-62599 mod_lti: use moodle_url for config values
This commit is contained in:
parent
878339017d
commit
379536a3a2
@ -3838,14 +3838,17 @@ function get_tool_type_state_info(stdClass $type) {
|
||||
* @return array An array with configuration details
|
||||
*/
|
||||
function get_tool_type_config($type) {
|
||||
global $CFG;
|
||||
|
||||
$platformid = get_config('mod_lti', 'platformid');
|
||||
$clientid = $type->clientid;
|
||||
$deploymentid = $type->id;
|
||||
$publickeyseturl = "{$CFG->wwwroot}/mod/lti/certs.php";
|
||||
$accesstokenurl = "{$CFG->wwwroot}/mod/lti/token.php";
|
||||
$authrequesturl = "{$CFG->wwwroot}/mod/lti/auth.php";
|
||||
$publickeyseturl = new moodle_url('/mod/lti/certs.php');
|
||||
$publickeyseturl = $publickeyseturl->out();
|
||||
|
||||
$accesstokenurl = new moodle_url('/mod/lti/token.php');
|
||||
$accesstokenurl = $accesstokenurl->out();
|
||||
|
||||
$authrequesturl = new moodle_url('/mod/lti/auth.php');
|
||||
$authrequesturl = $authrequesturl->out();
|
||||
|
||||
return array(
|
||||
'platformid' => $platformid,
|
||||
|
Loading…
x
Reference in New Issue
Block a user