From f724514e4f474ef2ba595be9522618aaf586cdb5 Mon Sep 17 00:00:00 2001 From: Juan Leyva Date: Fri, 1 May 2020 17:55:38 +0200 Subject: [PATCH] MDL-68537 tool_mobile: Add new features to disable We need to allow admins to disable the new things coming in the app. --- admin/tool/mobile/classes/api.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/admin/tool/mobile/classes/api.php b/admin/tool/mobile/classes/api.php index c6160d36f79..568eb355acd 100644 --- a/admin/tool/mobile/classes/api.php +++ b/admin/tool/mobile/classes/api.php @@ -371,7 +371,8 @@ class api { $availablemods = core_plugin_manager::instance()->get_plugins_of_type('mod'); $coursemodules = array(); - $appsupportedmodules = array('assign', 'book', 'chat', 'choice', 'data', 'feedback', 'folder', 'forum', 'glossary', 'imscp', + $appsupportedmodules = array( + 'assign', 'book', 'chat', 'choice', 'data', 'feedback', 'folder', 'forum', 'glossary', 'h5pactivity', 'imscp', 'label', 'lesson', 'lti', 'page', 'quiz', 'resource', 'scorm', 'survey', 'url', 'wiki', 'workshop'); foreach ($availablemods as $mod) { @@ -394,6 +395,7 @@ class api { $courseblocks = array(); $appsupportedblocks = array( 'activity_modules' => 'CoreBlockDelegate_AddonBlockActivityModules', + 'activity_results' => 'CoreBlockDelegate_AddonBlockActivityResults', 'site_main_menu' => 'CoreBlockDelegate_AddonBlockSiteMainMenu', 'myoverview' => 'CoreBlockDelegate_AddonBlockMyOverview', 'timeline' => 'CoreBlockDelegate_AddonBlockTimeline', @@ -437,6 +439,7 @@ class api { 'NoDelegate_ResponsiveMainMenuItems' => new lang_string('responsivemainmenuitems', 'tool_mobile'), 'NoDelegate_H5POffline' => new lang_string('h5poffline', 'tool_mobile'), 'NoDelegate_DarkMode' => new lang_string('darkmode', 'tool_mobile'), + 'CoreFilterDelegate' => new lang_string('type_filter_plural', 'plugin'), ), "$mainmenu" => array( '$mmSideMenuDelegate_mmaFrontpage' => new lang_string('sitehome'),