mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-33026 set default author and license in drag-n-drop upload
This commit is contained in:
parent
4631e39533
commit
140669a9dd
@ -91,6 +91,7 @@ M.form_dndupload.init = function(Y, options) {
|
||||
this.maxfiles = options.maxfiles;
|
||||
this.maxbytes = options.maxbytes;
|
||||
this.itemid = options.itemid;
|
||||
this.author = options.author;
|
||||
this.container = this.Y.one('#'+options.containerid);
|
||||
|
||||
if (options.filemanager) {
|
||||
@ -452,6 +453,9 @@ M.form_dndupload.init = function(Y, options) {
|
||||
formdata.append('sesskey', M.cfg.sesskey);
|
||||
formdata.append('repo_id', this.repositoryid);
|
||||
formdata.append('itemid', this.itemid);
|
||||
if (this.author) {
|
||||
formdata.append('author', this.author);
|
||||
}
|
||||
if (this.filemanager) { // Filepickers do not have folders
|
||||
formdata.append('savepath', this.filemanager.currentpath);
|
||||
}
|
||||
|
@ -963,6 +963,7 @@ M.form_filemanager.init = function(Y, options) {
|
||||
filemanager: manager,
|
||||
acceptedtypes: options.accepted_types,
|
||||
clientid: options.client_id,
|
||||
author: options.author,
|
||||
maxfiles: options.maxfiles,
|
||||
maxbytes: options.maxbytes,
|
||||
itemid: options.itemid,
|
||||
|
@ -47,6 +47,7 @@ M.form_filepicker.init = function(Y, options) {
|
||||
var dndoptions = {
|
||||
clientid: options.client_id,
|
||||
acceptedtypes: options.accepted_types,
|
||||
author: options.author,
|
||||
maxfiles: -1,
|
||||
maxbytes: options.maxbytes,
|
||||
itemid: options.itemid,
|
||||
|
Loading…
x
Reference in New Issue
Block a user