moodle 3.3 - Show remote courses in Course Oveview

moodle 3.3 - Show remote courses in Course Oveview

by Dimosthenis Manias -
Number of replies: 2
Would it be possible to connect to another platform through MNet and list remote courses in new Course Overview (my overview) block?
Average of ratings: -
In reply to Dimosthenis Manias

Απάντηση: moodle 3.3 - Show remote courses in Course Oveview

by Dimosthenis Manias -

In previous Course Oveview (Legacy) plugin, was possible to list courses from remote installations through MNet. 

I provide a code-snapshot from course_overview/locallib.php :

    // Get remote courses.

    $remotecourses = array();

    if (is_enabled_auth('mnet')) {

        $remotecourses = get_my_remotecourses();

    }


In the new version of the plugin that feature is not available. 

Is there any plan to be implemented in the near future?


In reply to Dimosthenis Manias

Re: Απάντηση: moodle 3.3 - Show remote courses in Course Oveview

by David Mudrák -
Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers Picture of Plugins guardians Picture of Testers Picture of Translators

MNet has been effectively deprecated in favour of open standard protocols and the web services layer. But the actual functionality will require some custom development on your side I guess.