mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
Merge branch 'MDL-39932_master' of git://github.com/grabs/moodle
This commit is contained in:
commit
71b2d24a9b
@ -68,6 +68,7 @@ require_login($course, true, $cm);
|
||||
require_capability('mod/feedback:mapcourse', $context);
|
||||
|
||||
if ($coursefilter) {
|
||||
$map = new stdClass;
|
||||
$map->feedbackid = $feedback->id;
|
||||
$map->courseid = $coursefilter;
|
||||
// insert a map only if it does exists yet
|
||||
@ -123,6 +124,7 @@ echo '</form>';
|
||||
|
||||
if ($coursemap = feedback_get_courses_from_sitecourse_map($feedback->id)) {
|
||||
$table = new flexible_table('coursemaps');
|
||||
$table->baseurl = $url;
|
||||
$table->define_columns( array('course'));
|
||||
$table->define_headers( array(get_string('mappedcourses', 'feedback')));
|
||||
|
||||
@ -130,9 +132,8 @@ if ($coursemap = feedback_get_courses_from_sitecourse_map($feedback->id)) {
|
||||
|
||||
$unmapurl = new moodle_url('/mod/feedback/unmapcourse.php');
|
||||
foreach ($coursemap as $cmap) {
|
||||
$cmapcontext = context_course::instance($cmap->id);
|
||||
$cmapshortname = format_string($cmap->shortname, true, array('context' => $cmapcontext));
|
||||
$coursecontext = context_course::instance($cmap->courseid);
|
||||
$cmapshortname = format_string($cmap->shortname, true, array('context' => $coursecontext));
|
||||
$cmapfullname = format_string($cmap->fullname, true, array('context' => $coursecontext));
|
||||
$unmapurl->params(array('id'=>$id, 'cmapid'=>$cmap->id));
|
||||
$anker = '<a href="'.$unmapurl->out().'">';
|
||||
|
Loading…
x
Reference in New Issue
Block a user