Merge branch 'MDL-49385-master' of git://github.com/lucisgit/moodle
This commit is contained in:
@@ -343,10 +343,12 @@ class block_base {
|
||||
* Default behavior: save all variables as $CFG properties
|
||||
* You don't need to override this if you 're satisfied with the above
|
||||
*
|
||||
* @deprecated since Moodle 2.9 MDL-49385 - Please use Admin Settings functionality to save block configuration.
|
||||
* @param array $data
|
||||
* @return boolean
|
||||
*/
|
||||
function config_save($data) {
|
||||
debugging('config_save($data) is deprecated, use Admin Settings functionality to save block configuration.', DEBUG_DEVELOPER);
|
||||
foreach ($data as $name => $value) {
|
||||
set_config($name, $value);
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ information provided here is intended especially for developers.
|
||||
=== 2.9 ===
|
||||
|
||||
* The obsolete method preferred_width() was removed (it was not doing anything)
|
||||
* Deprecated block_base::config_save as is not called anywhere and should not be used.
|
||||
|
||||
=== 2.8 ===
|
||||
|
||||
|
||||
Reference in New Issue
Block a user