mirror of
https://github.com/moodle/moodle.git
synced 2025-04-06 08:52:46 +02:00
Merge branch 'MDL-63825' of https://github.com/mkassaei/moodle
This commit is contained in:
commit
207ffaf14e
1
mod/quiz/amd/build/repaginate.min.js
vendored
Normal file
1
mod/quiz/amd/build/repaginate.min.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
define(["jquery","core/modal_factory"],function(a,b){var c={REPAGINATECOMMAND:"#repaginatecommand",HEADER:"header",BODY:"form"},d=function(){b.create({title:a(c.REPAGINATECOMMAND).data(c.HEADER),body:a(c.REPAGINATECOMMAND).data(c.BODY),large:!1},a(c.REPAGINATECOMMAND))};return{init:d}});
|
48
mod/quiz/amd/src/repaginate.js
Normal file
48
mod/quiz/amd/src/repaginate.js
Normal file
@ -0,0 +1,48 @@
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Initialise the repaginate dialogue on quiz editing page.
|
||||
*
|
||||
* @module mod_quiz/repaginate
|
||||
* @package mod_quiz
|
||||
* @copyright 2019 The Open University
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
define(['jquery', 'core/modal_factory'], function($, ModalFactory) {
|
||||
|
||||
var SELECTORS = {
|
||||
REPAGINATECOMMAND: '#repaginatecommand',
|
||||
HEADER: 'header',
|
||||
BODY: 'form'
|
||||
};
|
||||
|
||||
/**
|
||||
* Initialise the repaginate button and add the event listener.
|
||||
*/
|
||||
var init = function() {
|
||||
ModalFactory.create(
|
||||
{
|
||||
title: $(SELECTORS.REPAGINATECOMMAND).data(SELECTORS.HEADER),
|
||||
body: $(SELECTORS.REPAGINATECOMMAND).data(SELECTORS.BODY),
|
||||
large: false,
|
||||
},
|
||||
$(SELECTORS.REPAGINATECOMMAND)
|
||||
);
|
||||
};
|
||||
return {
|
||||
init: init
|
||||
};
|
||||
});
|
@ -193,7 +193,6 @@ class edit_renderer extends \plugin_renderer_base {
|
||||
* @return string HTML to output.
|
||||
*/
|
||||
protected function repaginate_button(structure $structure, \moodle_url $pageurl) {
|
||||
|
||||
$header = html_writer::tag('span', get_string('repaginatecommand', 'quiz'), array('class' => 'repaginatecommand'));
|
||||
$form = $this->repaginate_form($structure, $pageurl);
|
||||
|
||||
@ -209,7 +208,7 @@ class edit_renderer extends \plugin_renderer_base {
|
||||
if (!$structure->can_be_repaginated()) {
|
||||
$buttonoptions['disabled'] = 'disabled';
|
||||
} else {
|
||||
$this->page->requires->yui_module('moodle-mod_quiz-repaginate', 'M.mod_quiz.repaginate.init');
|
||||
$this->page->requires->js_call_amd('mod_quiz/repaginate', 'init');
|
||||
}
|
||||
|
||||
return html_writer::empty_tag('input', $buttonoptions);
|
||||
|
@ -1,85 +0,0 @@
|
||||
YUI.add('moodle-mod_quiz-repaginate', function (Y, NAME) {
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
/**
|
||||
* Repaginate functionality for a popup in quiz editing page.
|
||||
*
|
||||
* @package mod_quiz
|
||||
* @copyright 2014 The Open University
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
var CSS = {
|
||||
REPAGINATECOMMAND: '#repaginatecommand'
|
||||
};
|
||||
|
||||
var PARAMS = {
|
||||
CMID: 'cmid',
|
||||
HEADER: 'header',
|
||||
FORM: 'form'
|
||||
};
|
||||
|
||||
var POPUP = function() {
|
||||
POPUP.superclass.constructor.apply(this, arguments);
|
||||
};
|
||||
|
||||
Y.extend(POPUP, Y.Base, {
|
||||
header: null,
|
||||
body: null,
|
||||
|
||||
initializer: function() {
|
||||
var repaginatebutton = Y.one(CSS.REPAGINATECOMMAND);
|
||||
|
||||
// Set popup header and body.
|
||||
this.header = repaginatebutton.getData(PARAMS.HEADER);
|
||||
this.body = repaginatebutton.getData(PARAMS.FORM);
|
||||
repaginatebutton.on('click', this.display_dialog, this);
|
||||
},
|
||||
|
||||
display_dialog: function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
// Configure the popup.
|
||||
var config = {
|
||||
headerContent: this.header,
|
||||
bodyContent: this.body,
|
||||
draggable: true,
|
||||
modal: true,
|
||||
zIndex: 1000,
|
||||
context: [CSS.REPAGINATECOMMAND, 'tr', 'br', ['beforeShow']],
|
||||
centered: false,
|
||||
width: '30em',
|
||||
visible: false,
|
||||
postmethod: 'form',
|
||||
footerContent: null
|
||||
};
|
||||
|
||||
var popup = {dialog: null};
|
||||
popup.dialog = new M.core.dialogue(config);
|
||||
popup.dialog.show();
|
||||
}
|
||||
});
|
||||
|
||||
M.mod_quiz = M.mod_quiz || {};
|
||||
M.mod_quiz.repaginate = M.mod_quiz.repaginate || {};
|
||||
M.mod_quiz.repaginate.init = function() {
|
||||
return new POPUP();
|
||||
};
|
||||
|
||||
|
||||
}, '@VERSION@', {"requires": ["base", "event", "node", "io", "moodle-core-notification-dialogue"]});
|
@ -1 +0,0 @@
|
||||
YUI.add("moodle-mod_quiz-repaginate",function(e,t){var n={REPAGINATECOMMAND:"#repaginatecommand"},r={CMID:"cmid",HEADER:"header",FORM:"form"},i=function(){i.superclass.constructor.apply(this,arguments)};e.extend(i,e.Base,{header:null,body:null,initializer:function(){var t=e.one(n.REPAGINATECOMMAND);this.header=t.getData(r.HEADER),this.body=t.getData(r.FORM),t.on("click",this.display_dialog,this)},display_dialog:function(e){e.preventDefault();var t={headerContent:this.header,bodyContent:this.body,draggable:!0,modal:!0,zIndex:1e3,context:[n.REPAGINATECOMMAND,"tr","br",["beforeShow"]],centered:!1,width:"30em",visible:!1,postmethod:"form",footerContent:null},r={dialog:null};r.dialog=new M.core.dialogue(t),r.dialog.show()}}),M.mod_quiz=M.mod_quiz||{},M.mod_quiz.repaginate=M.mod_quiz.repaginate||{},M.mod_quiz.repaginate.init=function(){return new i}},"@VERSION@",{requires:["base","event","node","io","moodle-core-notification-dialogue"]});
|
@ -1,85 +0,0 @@
|
||||
YUI.add('moodle-mod_quiz-repaginate', function (Y, NAME) {
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
/**
|
||||
* Repaginate functionality for a popup in quiz editing page.
|
||||
*
|
||||
* @package mod_quiz
|
||||
* @copyright 2014 The Open University
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
var CSS = {
|
||||
REPAGINATECOMMAND: '#repaginatecommand'
|
||||
};
|
||||
|
||||
var PARAMS = {
|
||||
CMID: 'cmid',
|
||||
HEADER: 'header',
|
||||
FORM: 'form'
|
||||
};
|
||||
|
||||
var POPUP = function() {
|
||||
POPUP.superclass.constructor.apply(this, arguments);
|
||||
};
|
||||
|
||||
Y.extend(POPUP, Y.Base, {
|
||||
header: null,
|
||||
body: null,
|
||||
|
||||
initializer: function() {
|
||||
var repaginatebutton = Y.one(CSS.REPAGINATECOMMAND);
|
||||
|
||||
// Set popup header and body.
|
||||
this.header = repaginatebutton.getData(PARAMS.HEADER);
|
||||
this.body = repaginatebutton.getData(PARAMS.FORM);
|
||||
repaginatebutton.on('click', this.display_dialog, this);
|
||||
},
|
||||
|
||||
display_dialog: function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
// Configure the popup.
|
||||
var config = {
|
||||
headerContent: this.header,
|
||||
bodyContent: this.body,
|
||||
draggable: true,
|
||||
modal: true,
|
||||
zIndex: 1000,
|
||||
context: [CSS.REPAGINATECOMMAND, 'tr', 'br', ['beforeShow']],
|
||||
centered: false,
|
||||
width: '30em',
|
||||
visible: false,
|
||||
postmethod: 'form',
|
||||
footerContent: null
|
||||
};
|
||||
|
||||
var popup = {dialog: null};
|
||||
popup.dialog = new M.core.dialogue(config);
|
||||
popup.dialog.show();
|
||||
}
|
||||
});
|
||||
|
||||
M.mod_quiz = M.mod_quiz || {};
|
||||
M.mod_quiz.repaginate = M.mod_quiz.repaginate || {};
|
||||
M.mod_quiz.repaginate.init = function() {
|
||||
return new POPUP();
|
||||
};
|
||||
|
||||
|
||||
}, '@VERSION@', {"requires": ["base", "event", "node", "io", "moodle-core-notification-dialogue"]});
|
@ -1,10 +0,0 @@
|
||||
{
|
||||
"name": "moodle-mod_quiz-repaginate",
|
||||
"builds": {
|
||||
"moodle-mod_quiz-repaginate": {
|
||||
"jsfiles": [
|
||||
"repaginate.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
80
mod/quiz/yui/src/repaginate/js/repaginate.js
vendored
80
mod/quiz/yui/src/repaginate/js/repaginate.js
vendored
@ -1,80 +0,0 @@
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
/**
|
||||
* Repaginate functionality for a popup in quiz editing page.
|
||||
*
|
||||
* @package mod_quiz
|
||||
* @copyright 2014 The Open University
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
var CSS = {
|
||||
REPAGINATECOMMAND: '#repaginatecommand'
|
||||
};
|
||||
|
||||
var PARAMS = {
|
||||
CMID: 'cmid',
|
||||
HEADER: 'header',
|
||||
FORM: 'form'
|
||||
};
|
||||
|
||||
var POPUP = function() {
|
||||
POPUP.superclass.constructor.apply(this, arguments);
|
||||
};
|
||||
|
||||
Y.extend(POPUP, Y.Base, {
|
||||
header: null,
|
||||
body: null,
|
||||
|
||||
initializer: function() {
|
||||
var repaginatebutton = Y.one(CSS.REPAGINATECOMMAND);
|
||||
|
||||
// Set popup header and body.
|
||||
this.header = repaginatebutton.getData(PARAMS.HEADER);
|
||||
this.body = repaginatebutton.getData(PARAMS.FORM);
|
||||
repaginatebutton.on('click', this.display_dialog, this);
|
||||
},
|
||||
|
||||
display_dialog: function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
// Configure the popup.
|
||||
var config = {
|
||||
headerContent: this.header,
|
||||
bodyContent: this.body,
|
||||
draggable: true,
|
||||
modal: true,
|
||||
zIndex: 1000,
|
||||
context: [CSS.REPAGINATECOMMAND, 'tr', 'br', ['beforeShow']],
|
||||
centered: false,
|
||||
width: '30em',
|
||||
visible: false,
|
||||
postmethod: 'form',
|
||||
footerContent: null
|
||||
};
|
||||
|
||||
var popup = {dialog: null};
|
||||
popup.dialog = new M.core.dialogue(config);
|
||||
popup.dialog.show();
|
||||
}
|
||||
});
|
||||
|
||||
M.mod_quiz = M.mod_quiz || {};
|
||||
M.mod_quiz.repaginate = M.mod_quiz.repaginate || {};
|
||||
M.mod_quiz.repaginate.init = function() {
|
||||
return new POPUP();
|
||||
};
|
@ -1,11 +0,0 @@
|
||||
{
|
||||
"moodle-mod_quiz-repaginate": {
|
||||
"requires": [
|
||||
"base",
|
||||
"event",
|
||||
"node",
|
||||
"io",
|
||||
"moodle-core-notification-dialogue"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user