Merge branch 'MDL-72450-master-1' of git://github.com/mihailges/moodle

This commit is contained in:
Ilya Tregubov 2021-10-18 08:26:49 +02:00
commit 731b069c4d
7 changed files with 92 additions and 4 deletions

View file

@ -158,3 +158,4 @@ $THEME->requiredblocks = '';
$THEME->addblockposition = BLOCK_ADDBLOCK_POSITION_FLATNAV;
$THEME->iconsystem = \core\output\icon_system::FONTAWESOME;
$THEME->haseditswitch = true;
$THEME->usescourseindex = true;

View file

@ -2,6 +2,8 @@
"features": [
"lib/tests/behat/action_menu.feature",
"blocks/tests/behat/hide_blocks.feature",
"blocks/tests/behat/move_blocks.feature"
"blocks/tests/behat/move_blocks.feature",
"course/tests/behat/activity_navigation.feature",
"course/tests/behat/activity_navigation_with_restrictions.feature"
]
}

View file

@ -24,6 +24,6 @@
defined('MOODLE_INTERNAL') || die();
$plugin->version = 2021052505;
$plugin->version = 2021052506;
$plugin->requires = 2021052500;
$plugin->component = 'theme_boost';

View file

@ -1,6 +1,9 @@
This files describes API changes in /theme/* themes,
information provided here is intended especially for theme designer.
=== 4.0 ===
* A new theme config 'usescourseindex' allows a theme to specify whether it implements and uses course index.
=== 3.11 ===
* The classname 'viewmode-cobmined' in course/management.php has been changed to 'viewmode-combined'