From e04a0f6b34adc67a92c7ef8f2f9771ee6f54240c Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20Mudr=C3=A1k?= Date: Wed, 17 Sep 2014 15:38:59 +0200 Subject: [PATCH] MDL-31936 course: Add missing file level docblock to the reset_form.php Not related to the issue itself but spotted while working on the workshop reset feature. Assigning copyleft holder to Petr as the original author of the file. --- course/reset_form.php | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/course/reset_form.php b/course/reset_form.php index 622909b5667..52ba8fa4cdc 100644 --- a/course/reset_form.php +++ b/course/reset_form.php @@ -1,10 +1,37 @@ . + +/** + * Provides the course_reset_form class. + * + * @package core + * @copyright 2007 Petr Skoda + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); require_once $CFG->libdir.'/formslib.php'; +/** + * Defines the course reset settings form. + * + * @copyright 2007 Petr Skoda + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ class course_reset_form extends moodleform { function definition (){ global $CFG, $COURSE, $DB; -- 2.43.0