%PDF- %PDF-
Direktori : /home2/vacivi36/ava/mod/quiz/accessrule/seb/amd/src/ |
Current File : //home2/vacivi36/ava/mod/quiz/accessrule/seb/amd/src/managetemplates.js |
/** * Template management code. * * @module quizaccess_seb/managetemplates * @copyright 2020 Dmitrii Metelkin <dmitriim@catalyst-au.net> */ define( ['jquery', 'core/ajax', 'core/str', 'core/notification'], function($, ajax, str, notification) { var manager = { /** * Confirm removal of the specified template. * * @method removeTemplate * @param {EventFacade} e The EventFacade */ removeTemplate: function(e) { e.preventDefault(); var targetUrl = $(e.currentTarget).attr('href'); str.get_strings([ { key: 'confirmtemplateremovaltitle', component: 'quizaccess_seb' }, { key: 'confirmtemplateremovalquestion', component: 'quizaccess_seb' }, { key: 'yes', component: 'moodle' }, { key: 'no', component: 'moodle' } ]) .then(function(s) { notification.confirm(s[0], s[1], s[2], s[3], function() { window.location = targetUrl; }); return; }) .catch(); }, /** * Setup the template management UI. * * @method setup */ setup: function() { $('body').delegate('[data-action="delete"]', 'click', manager.removeTemplate); } }; return /** @alias module:quizaccess_seb/managetemplates */ { /** * Setup the template management UI. * * @method setup */ setup: manager.setup }; });