diff --git a/admin/settings/subsystems.php b/admin/settings/subsystems.php index 01de61c3e36..14a133126e7 100644 --- a/admin/settings/subsystems.php +++ b/admin/settings/subsystems.php @@ -74,4 +74,7 @@ if ($hassiteconfig) { // speedup for non-admins, add all caps used on this page new lang_string('configallowemojipickerincompatible', 'admin') )); } + + $optionalsubsystems->add(new admin_setting_configcheckbox('enablemoodlenet', new lang_string('enablemoodlenet', 'admin'), + new lang_string('enablemoodlenet_desc', 'admin'), 1, 1, 0)); } diff --git a/lang/en/admin.php b/lang/en/admin.php index 629745df1a5..d4a8f676e7f 100644 --- a/lang/en/admin.php +++ b/lang/en/admin.php @@ -538,6 +538,8 @@ $string['enableglobalsearch_desc'] = 'If enabled, data will be indexed and synch $string['enablegravatar'] = 'Enable Gravatar'; $string['enablegravatar_help'] = 'When enabled Moodle will attempt to fetch a user profile picture from Gravatar if the user has not uploaded an image.'; $string['enablemobilewebservice'] = 'Enable web services for mobile devices'; +$string['enablemoodlenet'] = 'Enable integration with MoodleNet instances'; +$string['enablemoodlenet_desc'] = 'If enabled, and provided the MoodleNet plugin is installed, users can import content from MoodleNet into this site.'; $string['enablerecordcache'] = 'Enable record cache'; $string['enablerssfeeds'] = 'Enable RSS feeds'; $string['enablesafebrowserintegration'] = 'Enable Safe Exam Browser integration'; diff --git a/version.php b/version.php index f172541bd20..d056d90e1cc 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2020032000.00; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2020032000.01; // YYYYMMDD = weekly release date of this DEV branch. // RR = release increments - 00 in DEV branches. // .XX = incremental changes. $release = '3.9dev (Build: 20200320)'; // Human-friendly version name