MDL-78333 mod_assign: final removal of deprecated log format methods.

This commit is contained in:
Paul Holden
2023-05-24 16:41:55 +01:00
parent 2e1c6fd43e
commit ca95bee259
12 changed files with 53 additions and 158 deletions
+3 -7
View File
@@ -522,14 +522,10 @@ abstract class assign_plugin {
}
/**
* Formatting for log info
*
* @param stdClass $submissionorgrade assign_submission or assign_grade The new submission or grade
* @return string
* @deprecated since 2.7
*/
public function format_for_log(stdClass $submissionorgrade) {
// Format the info for each submission plugin add_to_log.
return '';
public function format_for_log() {
throw new coding_exception(__FUNCTION__ . ' has been deprecated, please do not use it any more');
}
/**