diff --git a/enrol/guest/db/services.php b/enrol/guest/db/services.php index 9127483a08f..dc23ea65733 100644 --- a/enrol/guest/db/services.php +++ b/enrol/guest/db/services.php @@ -30,6 +30,7 @@ $functions = array( 'classname' => 'enrol_guest_external', 'methodname' => 'get_instance_info', 'description' => 'Return guest enrolment instance information.', - 'type' => 'read' + 'type' => 'read', + 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE), ), ); diff --git a/enrol/guest/version.php b/enrol/guest/version.php index 5076e7b2860..5abca61d82f 100644 --- a/enrol/guest/version.php +++ b/enrol/guest/version.php @@ -24,6 +24,6 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2015111601; // The current plugin version (Date: YYYYMMDDXX) +$plugin->version = 2015111602; // The current plugin version (Date: YYYYMMDDXX) $plugin->requires = 2015111000; // Requires this Moodle version $plugin->component = 'enrol_guest'; // Full name of the plugin (used for diagnostics) diff --git a/enrol/self/db/services.php b/enrol/self/db/services.php index 506defdd13b..9ce4669a9fb 100644 --- a/enrol/self/db/services.php +++ b/enrol/self/db/services.php @@ -29,7 +29,8 @@ $functions = array( 'methodname' => 'get_instance_info', 'classpath' => 'enrol/self/externallib.php', 'description' => 'self enrolment instance information.', - 'type' => 'read' + 'type' => 'read', + 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE), ), 'enrol_self_enrol_user' => array( @@ -37,6 +38,7 @@ $functions = array( 'methodname' => 'enrol_user', 'classpath' => 'enrol/self/externallib.php', 'description' => 'Self enrol the current user in the given course.', - 'type' => 'write' + 'type' => 'write', + 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE), ) ); diff --git a/enrol/self/version.php b/enrol/self/version.php index 06ae06b9ce9..059e9715456 100644 --- a/enrol/self/version.php +++ b/enrol/self/version.php @@ -24,7 +24,7 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2015111600; // The current plugin version (Date: YYYYMMDDXX) +$plugin->version = 2015111601; // The current plugin version (Date: YYYYMMDDXX) $plugin->requires = 2015111000; // Requires this Moodle version $plugin->component = 'enrol_self'; // Full name of the plugin (used for diagnostics) $plugin->cron = 600; diff --git a/grade/report/user/db/services.php b/grade/report/user/db/services.php index 872d1cb71a1..252e4b89c1a 100644 --- a/grade/report/user/db/services.php +++ b/grade/report/user/db/services.php @@ -30,7 +30,8 @@ $functions = array( 'classpath' => 'grade/report/user/externallib.php', 'description' => 'Get the user/s report grades table for a course', 'type' => 'read', - 'capabilities' => 'gradereport/user:view' + 'capabilities' => 'gradereport/user:view', + 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE), ), 'gradereport_user_view_grade_report' => array( 'classname' => 'gradereport_user_external', @@ -38,6 +39,7 @@ $functions = array( 'classpath' => 'grade/report/user/externallib.php', 'description' => 'Trigger the report view event', 'type' => 'write', - 'capabilities' => 'gradereport/user:view' + 'capabilities' => 'gradereport/user:view', + 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE), ) ); diff --git a/grade/report/user/version.php b/grade/report/user/version.php index 9ca82e24fc2..08cad03cac5 100644 --- a/grade/report/user/version.php +++ b/grade/report/user/version.php @@ -24,6 +24,6 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2015111600; // The current plugin version (Date: YYYYMMDDXX) +$plugin->version = 2015111601; // The current plugin version (Date: YYYYMMDDXX) $plugin->requires = 2015111000; // Requires this Moodle version $plugin->component = 'gradereport_user'; // Full name of the plugin (used for diagnostics) diff --git a/lib/db/services.php b/lib/db/services.php index 53eee8e6a68..7d3715698ab 100644 --- a/lib/db/services.php +++ b/lib/db/services.php @@ -1605,15 +1605,7 @@ $functions = array( $services = array( 'Moodle mobile web service' => array( - 'functions' => array ( - 'enrol_guest_get_instance_info', - 'enrol_self_enrol_user', - 'enrol_self_get_instance_info', - 'gradereport_user_get_grades_table', - 'gradereport_user_view_grade_report', - 'message_airnotifier_are_notification_preferences_configured', - 'message_airnotifier_is_system_configured', - ), + 'functions' => array(), 'enabled' => 0, 'restrictedusers' => 0, 'shortname' => MOODLE_OFFICIAL_MOBILE_SERVICE, diff --git a/message/output/airnotifier/db/services.php b/message/output/airnotifier/db/services.php index f7fa49ec9c1..b44ccbdcfdd 100644 --- a/message/output/airnotifier/db/services.php +++ b/message/output/airnotifier/db/services.php @@ -31,6 +31,7 @@ $functions = array( 'classpath' => 'message/output/airnotifier/externallib.php', 'description' => 'Check whether the airnotifier settings have been configured', 'type' => 'read', + 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE), ), 'message_airnotifier_are_notification_preferences_configured' => array( @@ -39,5 +40,6 @@ $functions = array( 'classpath' => 'message/output/airnotifier/externallib.php', 'description' => 'Check if the users have notification preferences configured yet', 'type' => 'read', + 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE), ), ); diff --git a/message/output/airnotifier/version.php b/message/output/airnotifier/version.php index 6caf56d3e8c..5b6ce7d34e5 100644 --- a/message/output/airnotifier/version.php +++ b/message/output/airnotifier/version.php @@ -23,6 +23,6 @@ */ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2015111600; // The current plugin version (Date: YYYYMMDDXX). +$plugin->version = 2015111601; // The current plugin version (Date: YYYYMMDDXX). $plugin->requires = 2015111000; // Requires this Moodle version. $plugin->component = 'message_airnotifier'; // Full name of the plugin (used for diagnostics). diff --git a/version.php b/version.php index d9b048b74c1..d2cc7728a92 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2016042900.03; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2016042900.04; // YYYYMMDD = weekly release date of this DEV branch. // RR = release increments - 00 in DEV branches. // .XX = incremental changes.