-
Improvement
-
Resolution: Fixed
-
Minor
-
3.8
-
MOODLE_38_STABLE
-
MOODLE_39_STABLE
-
master_
MDL-67872 -
plagiarismlib.php plagiarism_load_available_plugins() doesn't use config consistently with other plugin types.
get_config('plagiarism', $plugin."_use")
https://github.com/moodle/moodle/blob/master/lib/plagiarismlib.php#L197
we should deprecate this style of storing the details of enabled plagiarism plugins with something more like:
get_config('plagiarism_'. $plugin, 'enabled')
so that we are storing plugin settings within their own frankenstyle namespace instead of in the "global" "plagiarism" plugin space.
we should be checking if that old var exists and if so, throw a debug notice - the plagiarism plugin developer should be responsible for migrating to the new method and deleting the old var from the db.
- has a non-specific relationship to
-
MDL-67526 Final deprecation of plagiarism functions
-
- Closed
-