upgrade.txt 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. This files describes API changes in /blocks/* - activity modules,
  2. information provided here is intended especially for developers.
  3. === 3.1 ===
  4. * The collapsed class was removed from the navigation block to make it compatible with aria.
  5. * New aria attributes were added on the navigation block [aria-expanded="false"].
  6. * The tree JS handling were moved from YUI to AMD module (Jquery).
  7. === 2.9 ===
  8. * The obsolete method preferred_width() was removed (it was not doing anything)
  9. * Deprecated block_base::config_save as is not called anywhere and should not be used.
  10. * Added instance_copy() function to the block_base class. This function allows for block
  11. specific data to be copied when a block is copied.
  12. === 2.8 ===
  13. * The instance_config_print() function was removed. It was deprecated in
  14. Moodle 2.0, but without debugging notices. Since it was no longer a part
  15. of the code path, debugging notices would not have been displayed.
  16. * Deprecated functions were removed from the block_base class:
  17. ** _print_block()
  18. ** _print_shadow()
  19. ** _title_html()
  20. ** _add_edit_controls()
  21. ** config_print()
  22. === 2.6 ===
  23. * Deprecated /admin/block.php was removed, make sure blocks are using settings.php instead.
  24. === 2.4 ===
  25. Created new capability 'blocks/xxx:myaddinstance' that determines whether a user can add
  26. a specific block to their My Home page. This capability was only defined for blocks where
  27. the applicable_formats function does not include "'my' => false" in the returned array,
  28. allowing it be added to the My Home page.
  29. === 2.3 ===
  30. required changes in code:
  31. * block_xxx_pluginfile() is now given the 7th parameter (hopefully the last one) that
  32. contains additional options for the file serving. The array should be re-passed
  33. to send_stored_file().
  34. === 2.0 ===
  35. required changes in code:
  36. * use new DML syntax everywhere
  37. * use new DDL syntax in db/upgrade.php
  38. * replace defaults.php by settings.php and db/install.php
  39. * replace STATEMENTS section in db/install.xml by db/install.php
  40. * move post instalation code from install() method into db/install.php
  41. * completely rewrite file handling
  42. * rewrite backup/restore
  43. * theme changes: move plugin styles into blocks/xxx/styles.css and use new css markers for images,
  44. move all images into new blocks/xxx/pix/ directory and use new outputlib api
  45. old global $THEME is fully replaced by $OUTPUT
  46. * remove '_utf8' from language pack names, use new {$a} syntax in language packs
  47. * use 'pluginname' lang pack identifier instead of 'blockname'
  48. * move cron and version number into standard version.php
  49. * removed support for old config_global.html, use settings.php