mirror of
https://github.com/mediacms-io/mediacms.git
synced 2026-02-06 15:33:00 -05:00
a
This commit is contained in:
118
lms-plugins/mediacms-moodle/tiny/classes/form/manage_files_form.php
Executable file
118
lms-plugins/mediacms-moodle/tiny/classes/form/manage_files_form.php
Executable file
@@ -0,0 +1,118 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Atto text editor manage files plugin form.
|
||||
*
|
||||
* @package tiny_mediacms
|
||||
* @copyright 2022, Stevani Andolo <stevani@hotmail.com.au>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace tiny_mediacms\form;
|
||||
|
||||
use html_writer;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
require_once("{$CFG->libdir}/formslib.php");
|
||||
|
||||
/**
|
||||
* Form allowing to edit files in one draft area.
|
||||
*
|
||||
* @package tiny_mediacms
|
||||
* @copyright 2022, Stevani Andolo <stevani@hotmail.com.au>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class manage_files_form extends \moodleform {
|
||||
|
||||
public function definition() {
|
||||
global $PAGE, $USER;
|
||||
$mform = $this->_form;
|
||||
|
||||
$mform->setDisableShortforms(true);
|
||||
|
||||
$itemid = $this->_customdata['draftitemid'];
|
||||
$elementid = $this->_customdata['elementid'];
|
||||
$options = $this->_customdata['options'];
|
||||
$files = $this->_customdata['files'];
|
||||
$usercontext = $this->_customdata['context'];
|
||||
$removeorphaneddrafts = $this->_customdata['removeorphaneddrafts'] ?? false;
|
||||
|
||||
$mform->addElement('header', 'filemanagerhdr', get_string('filemanager', 'tiny_mediacms'));
|
||||
|
||||
$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('hidden', 'elementid');
|
||||
$mform->setType('elementid', PARAM_TEXT);
|
||||
|
||||
$mform->addElement('filemanager', 'files_filemanager', '', null, $options);
|
||||
|
||||
// Let the user know that any drafts not referenced in the text will be removed automatically.
|
||||
if ($removeorphaneddrafts) {
|
||||
$mform->addElement('static', '', '', html_writer::tag(
|
||||
'div',
|
||||
get_string('unusedfilesremovalnotice', 'tiny_mediacms')
|
||||
));
|
||||
}
|
||||
|
||||
$mform->addElement('header', 'missingfileshdr', get_string('missingfiles', 'tiny_mediacms'));
|
||||
$mform->addElement('static', '', '',
|
||||
html_writer::tag(
|
||||
'div',
|
||||
html_writer::tag('div', get_string('hasmissingfiles', 'tiny_mediacms')) .
|
||||
html_writer::tag('div', '', ['class' => 'missing-files']
|
||||
),
|
||||
['class' => 'file-status'])
|
||||
);
|
||||
|
||||
$mform->addElement('header', 'deletefileshdr', get_string('unusedfilesheader', 'tiny_mediacms'));
|
||||
$mform->addElement('static', '', '', html_writer::tag('div', get_string('unusedfilesdesc', 'tiny_mediacms')));
|
||||
|
||||
foreach ($files as $hash => $file) {
|
||||
$mform->addElement('checkbox', "deletefile[{$hash}]", '', $file, ['data-filename' => $file]);
|
||||
$mform->setType("deletefile[{$hash}]", PARAM_INT);
|
||||
}
|
||||
|
||||
$mform->addElement('submit', 'delete', get_string('deleteselected', 'tiny_mediacms'));
|
||||
|
||||
$PAGE->requires->js_call_amd('tiny_mediacms/usedfiles', 'init', [
|
||||
'files' => array_flip($files),
|
||||
'usercontext' => $usercontext->id,
|
||||
'itemid' => $itemid,
|
||||
'elementid' => $elementid,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user