1
0
mirror of https://github.com/moodle/moodle.git synced 2025-05-02 14:28:30 +02:00

MDL-68826 mod_h5pactivity: fix content bank link

This commit is contained in:
Ferran Recio 2020-06-05 08:31:00 +02:00
parent 7f6026323d
commit dd75c98889

@ -74,8 +74,10 @@ class mod_h5pactivity_mod_form extends moodleform_mod {
$mform->addHelpButton('packagefile', 'package', 'mod_h5pactivity');
// Add a link to the Content Bank if the user can access.
if (has_capability('moodle/contentbank:access', $this->context)) {
$url = new moodle_url('/contentbank/index.php', ['contextid' => $this->context->id]);
$course = $this->get_course();
$context = context_course::instance($course->id);
if (has_capability('moodle/contentbank:access', $context)) {
$url = new moodle_url('/contentbank/index.php', ['contextid' => $context->id]);
$msg = get_string('usecontentbank', 'mod_h5pactivity', $url->out());
$msg .= ' '.$OUTPUT->help_icon('contentbank', 'mod_h5pactivity');
$mform->addElement('static', 'contentbank', '', $msg);