1 This files describes API changes in /admin/*.
5 * Admin setting "Allow blocks to use the dock" (allowblockstodock) has been removed & stings deprecated.
6 Docking of blocks is no longer supported within the core themes (Boost, Classic).
7 Please see MDL-64506 for further details.
11 * The admin settings admin_setting_configselect and admin_setting_configmultiselect now support the optgroup tag.
12 Grouping of options can be created with this new tag.
13 For using it, the option parameters needs the Group names as indexes:
15 "Spain" => ["madrid" => "Madrid", "barcelona" => "Barcelona"],
16 "France" => ["paris" => "Paris", "marseille" => "Marseille"],
21 * Admin settings have been refined to better support right-to-left languages. In RTL,
22 most fields should not have their direction flipped, a URL, a path to a file, ...
23 are always displayed LTR. The admin setting will now best guess if they should be
24 RTLized based on their PARAM_* type. To override that guess, use
25 admin_setting::set_force_ltr(true/false).