Dear All,
I am trying to provide some visual validations in the course add/edit Module UI, which is under the following url in genral
[moodle_url]course/modedit.php?sr=0&add=scorm
my findings
I found that all the module edit functionalities are come under modedit.php inside the course, that dynamically call the mod_[module]_mod_form
$modmoodleform = "$CFG->dirroot/mod/$module->name/mod_form.php";
if (file_exists($modmoodleform)) {
require_once($modmoodleform);
} else {
print_error('noformdesc');
}
$mformclassname = 'mod_'.$module->name.'_mod_form';
I may easily add some additional function in the abstract class moodleform_mod
but i don't know is this a right way, i want to know is there a proper way to do this,
i'm not able to found any renderer to override this ui,
can some one tell that is there a way to override this MODEDIT ui from inside a THEME