Update for MOODLE310

This commit is contained in:
Luuk Verhoeven
2020-11-18 09:45:40 +01:00
parent cc43dbdf0b
commit 29a4857d8a
7 changed files with 41 additions and 274 deletions

View File

@@ -41,24 +41,10 @@ class frontend extends \core_availability\frontend {
*
* @return array
*/
protected function get_javascript_strings() {
protected function get_javascript_strings() : array {
return [
'js:ipaddress',
'error_ipaddress',
];
}
/**
* Decides whether this plugin should be available in a given course. The
* plugin can do this depending on course or system settings.
*
* @param \stdClass $course Course object
* @param \cm_info $cm Course-module currently being edited (null if none)
* @param \section_info $section Section currently being edited (null if none)
*
* @return bool True if there are completion criteria
*/
protected function allow_add($course, \cm_info $cm = null, \section_info $section = null) {
return true;
}
}