Merge branch 'MDL-79938-main' of https://github.com/sammarshallou/moodle
[moodle.git] / h5p / upgrade.txt
blobf212555c0f3a4887d838861936b762f5f3ce53ad
1 This files describes API changes in core libraries and APIs,
2 information provided here is intended especially for developers.
4 === 4.3 ===
5 * The `\core_h5p\file_storage::EDITOR_FILEAREA` constant has been removed, as all editor files are stored in user draft
7 === 4.0 ===
8 * Added new methods to api: get_original_content_from_pluginfile_url and can_edit_content.
9 * Added edit.php and editcontent_form class, for modifying H5P content given an H5P identifier (from the h5p table).
10 * Added a new parameter to the player::display method, to define whether the edit button should be displayed below the
11 H5P content or not. Default value for this parameter is false.
12 * H5P subsystem is allowed to act as an API (level 2) too.
13 * Plugins can now implement h5p\canedit::can_edit_content method to define, if required, any custom behaviour for deciding
14 whether an H5P content can be edited or not. The specific plugin check will completely override the generic check.
15 * The third-party library h5p/h5plib/v124/core has been updated to version 1.24.3.
17 === 3.11 ===
18 * Added $skipcapcheck parameter to H5P constructor, api::create_content_from_pluginfile_url() and
19 api::get_content_from_pluginfile_url() to let skip capabilities check to get the pluginfile URL.
20 * Added new field "enabled" to h5p_libraries to let define if a content type is enabled (1) or not (0).
21 For now, only runnable content-types can be disabled/enabled. When a content-type is disabled, their
22 contents are not displayed and no new contents using it can be created/uploaded.
23 Some extra methods have been added to the api too in order to support this field:
24 - set_library_enabled
25 - is_library_enabled
26 - is_valid_package
27 * The third-party library h5p/h5plib/v124/core has been updated to version 1.24.2.
29 === 3.10 ===
30 * Added a new cache for h5p_library_files (MDL-69207)
32 === 3.9 ===
33 * A new plugintype has been created, h5plib, for having installed more
34 than one H5P library version.
35 * H5P third-party libraries have been moved from /lib/h5p to h5p/h5plib/v124,
36 as an h5plib plugintype.
37 * H5P Editor PHP library added to h5plib v124 plugin.