Merge branch 'MDL-79830' of https://github.com/paulholden/moodle
[moodle.git] / completion / upgrade.txt
blob7b40b722976c03f02db1c0adf2311ccbd95a1d53
1 This file describes API changes in /completion/* - completion,
2 information provided here is intended especially for developers.
4 === 4.4 ===
5 * A new method, cm_completion_details::is_overall_complete() has been added to calculate whether a module should be considered or
6   not completed, based on their completion options and the current value for the overall complete state.
8 === 4.3 ===
9 * A trait class, core_completion/form/form_trait has been added to reuse code for adding and validation completion settings to any
10   form.
11 * New method is_manual() has been added to `core_completion/cm_completion_details`
12 * The method manager::get_activities_and_resources() now has the optional $includedefaults parameter to define whether the default
13   values should be included or not.
14 * The methods manager::apply_default_completion() and manager::get_default_completion() now have the optional $suffix parameter
15   to be added to the name of the completion rules.
16 * The method manager::defaultcompletion() now has the $modules and $form parameters, to specify the modules that have been set
17   through the form and the current form that has been sent.
18 * Support for deprecated `[modname]_get_completion_state` callbacks has been removed, custom completion rules must be implemented
19   by appropriate `mod_[modname]\completion\custom_completion` class instead
20 * $CFG->completiondefault setting has been removed.
22 === 4.0 ===
23 * New method mark_course_completions_activity_criteria() has been added to mark course completions instantly. It is
24   based on cron for completion_criteria_activity.php which is refactored to use it as well.
25 * Core now passes an additional parameter to '_get_completion_state'. This is an array representation of the completion results that have already been
26   tested. Currently contains - viewed, usegrade, passgrade. Any plugin that are dependent on these criteria can now check this array instead of retesting it.
27 * The method \completion_criteria_completion::mark_complete() now has the optional $timecompleted parameter to specify when the
28   criteria was completed.
29 * New method get_available_completion_options() has been added in the core_completion\manager class. This method can be used
30   to obtain an array with the available completion options ([url => name]) for the current course and user.
31 * The method get_available_completion_tabs() in the core_completion\manager class has been deprecated because the tabs navigation
32   structure is no longer used in the completion pages. Please use core_completion\manager::get_available_completion_options()
33   instead.
35 === 3.11 ===
36 * New Behat steps for activity completion in the behat_completion class:
37   - activity_completion_condition_displayed_as()
38     - Given the "<Completion condition>" completion condition of "<Activity name>" is displayed as "<Status>"
39   - activity_should_have_the_completion_condition()
40     - Given "<Activity name>" should have the "<Condition name>" completion condition
41   - manual_completion_button_displayed_as()
42     - Given the manual completion button of "<Activity name>" is displayed as "<Status>"
43   - the_manual_completion_button_for_activity_should_be_disabled()
44     - Given the manual completion button for "<Activity name>" should be disabled
45   - there_should_be_no_completion_for_activity()
46     - Given there should be no completion information shown for "<Activity name>"
47   - toggle_the_manual_completion_state()
48     - Given I toggle the manual completion state of "<Activity name>"
49   - overridden_manual_completion_button_displayed_as
50     - Given the manual completion button of "<Activity name>" overridden by "<User>" is displayed as "<Status>"
51   - overridden_activity_completion_condition_displayed_as
52     - Given the "<Completion condition>" completion condition of "<Activity name>" overridden by "<User>" is displayed as "<Status>"
53 * *_get_completion_state() callback functions have been deprecated and should no longer be used. Plugins that define custom
54   completion rules must implement the mod_[modname]\completion\custom_completion class that extends the
55   \core_completion\activity_custom_completion base class.
57 === 3.7 ===
58  * External function core_completion_external::get_activities_completion_status new returns the following additional field:
59    - valueused (indicates whether the completion state affects the availability of other content)
60  * On the course page, only users with the capability 'moodle/course:isincompletionreports' (students, by default) can now tick the
61    completion checkboxes. Teachers no longer get working checkboxes; tey see slightly different icons that indicate whether
62    completion is enabled for the activity. These are the same icons which have always been shown to teachers before when the
63    enabled the course editing mode.
65 === 2.9 ===
67 * A completed and failed activity counts as a completed activity for
68   course completion.