You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.8 KiB
92 lines
3.8 KiB
<?php
|
|
// 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/>.
|
|
|
|
/**
|
|
* Class tinymce_managefiles_manage_form
|
|
*
|
|
* @package tinymce_managefiles
|
|
* @copyright 2013 Marina Glancy
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
require_once($CFG->libdir."/formslib.php");
|
|
|
|
/**
|
|
* Form allowing to edit files in one draft area
|
|
*
|
|
* No buttons are necessary since the draft area files are saved immediately using AJAX
|
|
*
|
|
* @package tinymce_managefiles
|
|
* @copyright 2013 Marina Glancy
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class tinymce_managefiles_manage_form extends moodleform {
|
|
function definition() {
|
|
global $PAGE;
|
|
$mform = $this->_form;
|
|
|
|
$itemid = $this->_customdata['draftitemid'];
|
|
$options = $this->_customdata['options'];
|
|
$files = $this->_customdata['files'];
|
|
|
|
$mform->addElement('hidden', 'itemid');
|
|
$mform->setType('itemid', PARAM_INT);
|
|
$mform->addElement('hidden', 'maxbytes');
|
|
$mform->setType('maxbytes', PARAM_INT);
|
|
$mform->addElement('hidden', 'subdirs');
|
|
$mform->setType('subdirs', PARAM_INT);
|
|
$mform->addElement('hidden', 'accepted_types');
|
|
$mform->setType('accepted_types', PARAM_RAW);
|
|
$mform->addElement('hidden', 'return_types');
|
|
$mform->setType('return_types', PARAM_INT);
|
|
$mform->addElement('hidden', 'context');
|
|
$mform->setType('context', PARAM_INT);
|
|
$mform->addElement('hidden', 'areamaxbytes');
|
|
$mform->setType('areamaxbytes', PARAM_INT);
|
|
|
|
$mform->addElement('filemanager', 'files_filemanager', '', null, $options);
|
|
|
|
$mform->addElement('submit', 'refresh', get_string('refreshfiles', 'tinymce_managefiles'));
|
|
$mform->registerNoSubmitButton('refresh');
|
|
|
|
$mform->addElement('static', '', '',
|
|
html_writer::tag('div', '', array('class' => 'managefilesstatus')));
|
|
|
|
$mform->addElement('header', 'deletefiles', get_string('unusedfilesheader', 'tinymce_managefiles'));
|
|
$mform->addElement('static', '', '',
|
|
html_writer::tag('span', get_string('unusedfilesdesc', 'tinymce_managefiles'), array('class' => 'managefilesunuseddesc')));
|
|
foreach ($files as $file) {
|
|
$mform->addElement('checkbox', 'deletefile['.$file.']', '', $file);
|
|
$mform->setType('deletefile['.$file.']', PARAM_INT);
|
|
}
|
|
$mform->addElement('submit', 'delete', get_string('deleteselected', 'tinymce_managefiles'));
|
|
|
|
$PAGE->requires->js_init_call('M.tinymce_managefiles.analysefiles', array(), true);
|
|
$PAGE->requires->strings_for_js(array('allfilesok', 'hasmissingfiles'), 'tinymce_managefiles');
|
|
|
|
$this->set_data(array('files_filemanager' => $itemid,
|
|
'itemid' => $itemid,
|
|
'subdirs' => $options['subdirs'],
|
|
'maxbytes' => $options['maxbytes'],
|
|
'areamaxbytes' => $options['areamaxbytes'],
|
|
'accepted_types' => $options['accepted_types'],
|
|
'return_types' => $options['return_types'],
|
|
'context' => $options['context']->id,
|
|
));
|
|
}
|
|
}
|
|
|