this.config = config;
var plugintypesel = Y.one('#tool_installaddon_installfromzip_plugintype');
if (plugintypesel) {
- plugintypesel.on('change', this.check_for_permission, this);
+ plugintypesel.on('change', function() {
+ this.check_for_permission(plugintypesel);
+ }, this);
+ this.repeat_permcheck_icon = Y.Node.create('<div><a href="#repeat-permcheck"><img src="' + M.util.image_url('i/reload') + '" /> ' +
+ M.util.get_string('permcheckrepeat', 'tool_installaddon') + '</a></div>');
+ this.repeat_permcheck_icon.one('a').on('click', function(e) {
+ e.preventDefault();
+ this.check_for_permission(plugintypesel);
+ }, this);
}
},
/**
* @method check_for_permission
- * @param {Event} e
+ * @param {Node} plugintypesel Plugin type selector node
*/
- check_for_permission : function(e) {
- var plugintype = e.currentTarget.get('value');
+ check_for_permission : function(plugintypesel) {
+ var plugintype = plugintypesel.get('value');
+
if (plugintype == '') {
return;
}
'sesskey' : M.cfg.sesskey,
'plugintype' : plugintype
},
- 'arguments' : {
- 'plugintypeselector' : e.currentTarget,
- 'showresult' : function(msg, status) {
- var resultline = Y.one('#tool_installaddon_installfromzip_permcheck');
- if (resultline) {
- if (status === 'success') {
- resultline.setContent('<span class="success"><img src="' + M.util.image_url('i/valid') + '" /> ' +
- msg + '</span>');
- } else if (status === 'progress') {
- resultline.setContent('<span class="progress"><img src="' + M.cfg.loadingicon + '" /> ' +
- msg + '</span>');
- } else {
- resultline.setContent('<span class="error"><img src="' + M.util.image_url('i/invalid') + '" /> ' +
- msg + '</span>');
- }
- }
- }
- },
+ 'context' : this,
'on' : {
'start' : function(transid, args) {
- args.showresult(M.util.get_string('permcheckprogress', 'tool_installaddon'), 'progress');
+ this.showresult(M.util.get_string('permcheckprogress', 'tool_installaddon'), 'progress');
},
'success': function(transid, outcome, args) {
var response;
response = Y.JSON.parse(outcome.responseText);
if (response.error) {
Y.log(response.error, 'error', 'moodle-tool_installaddon-permcheck');
- args.showresult(M.util.get_string('permcheckerror', 'tool_installaddon', response), 'error');
+ this.showresult(M.util.get_string('permcheckerror', 'tool_installaddon', response), 'error');
} else if (response.path && response.writable == 1) {
- args.showresult(M.util.get_string('permcheckresultyes', 'tool_installaddon', response), 'success');
+ this.showresult(M.util.get_string('permcheckresultyes', 'tool_installaddon', response), 'success');
} else if (response.path && response.writable == 0) {
- args.showresult(M.util.get_string('permcheckresultno', 'tool_installaddon', response), 'error');
+ this.showresult(M.util.get_string('permcheckresultno', 'tool_installaddon', response), 'error');
} else {
Y.log(response, 'debug', 'moodle-tool_installaddon-permcheck');
- args.showresult(M.util.get_string('permcheckerror', 'tool_installaddon', response), 'error');
+ this.showresult(M.util.get_string('permcheckerror', 'tool_installaddon', response), 'error');
}
} catch (e) {
Y.log(e, 'error', 'moodle-tool_installaddon-permcheck');
- args.showresult(M.util.get_string('permcheckerror', 'tool_installaddon'), 'error');
+ this.showresult(M.util.get_string('permcheckerror', 'tool_installaddon'), 'error');
}
},
'failure': function(transid, outcome, args) {
Y.log(outcome.statusText, 'error', 'moodle-tool_installaddon-permcheck');
- args.showresult(M.util.get_string('permcheckerror', 'tool_installaddon'));
+ this.showresult(M.util.get_string('permcheckerror', 'tool_installaddon'));
}
}
});
},
+ /**
+ * @method showresult
+ * @param {String} msg Message to display
+ * @param {String} status Message status
+ */
+ showresult : function(msg, status) {
+ var resultline = Y.one('#tool_installaddon_installfromzip_permcheck');
+ if (resultline) {
+ if (status === 'success') {
+ resultline.setHTML('<span class="success"><img src="' + M.util.image_url('i/valid') + '" /> ' +
+ msg + '</span>');
+ } else if (status === 'progress') {
+ resultline.setHTML('<span class="progress"><img src="' + M.cfg.loadingicon + '" /> ' +
+ msg + '</span>');
+ } else {
+ resultline.setHTML('<span class="error"><img src="' + M.util.image_url('i/invalid') + '" /> ' +
+ msg + '</span>').append(this.repeat_permcheck_icon);
+ }
+ }
+ },
+
+ /**
+ * @property
+ * @type {Y.Node}
+ */
+ repeat_permcheck_icon : null,
+
/**
* @property
* @type {Object}