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 -
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.