2013-09-09 08:50:48 +00:00
|
|
|
<?php
|
2021-11-24 07:29:43 +00:00
|
|
|
// This file is part of the htmlcert module for Moodle - http://moodle.org/
|
2013-09-09 08:50:48 +00:00
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
|
2017-02-16 12:12:19 +00:00
|
|
|
/**
|
|
|
|
* This file contains the class that handles uploading files.
|
|
|
|
*
|
2021-11-24 07:29:43 +00:00
|
|
|
* @package mod_htmlcert
|
2017-02-16 12:12:19 +00:00
|
|
|
* @copyright 2013 Mark Nelson <markn@moodle.com>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
namespace mod_htmlcert;
|
2016-02-16 09:03:34 +00:00
|
|
|
|
2013-09-09 08:50:48 +00:00
|
|
|
defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.');
|
|
|
|
|
|
|
|
require_once($CFG->libdir.'/formslib.php');
|
|
|
|
|
|
|
|
/**
|
2017-02-16 12:12:19 +00:00
|
|
|
* Handles uploading files.
|
2013-09-09 08:50:48 +00:00
|
|
|
*
|
2021-11-24 07:29:43 +00:00
|
|
|
* @package mod_htmlcert
|
2013-09-09 08:50:48 +00:00
|
|
|
* @copyright 2013 Mark Nelson <markn@moodle.com>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
2016-02-16 09:03:34 +00:00
|
|
|
class upload_image_form extends \moodleform {
|
2013-09-09 08:50:48 +00:00
|
|
|
|
|
|
|
/** @var array the filemanager options */
|
2016-02-16 09:03:34 +00:00
|
|
|
protected $filemanageroptions = array();
|
2013-09-09 08:50:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form definition.
|
|
|
|
*/
|
|
|
|
public function definition() {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$mform = $this->_form;
|
|
|
|
$this->filemanageroptions = array(
|
|
|
|
'maxbytes' => $CFG->maxbytes,
|
|
|
|
'subdirs' => 1,
|
|
|
|
'accepted_types' => 'image');
|
2021-11-24 07:29:43 +00:00
|
|
|
$mform->addElement('filemanager', 'htmlcertimage', get_string('uploadimage', 'htmlcert'), '',
|
2017-02-16 12:12:19 +00:00
|
|
|
$this->filemanageroptions);
|
2013-09-09 08:50:48 +00:00
|
|
|
|
|
|
|
$this->add_action_buttons();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-11-24 07:29:43 +00:00
|
|
|
* Fill in the current page data for this htmlcert.
|
2013-09-09 08:50:48 +00:00
|
|
|
*/
|
|
|
|
public function definition_after_data() {
|
|
|
|
$mform = $this->_form;
|
|
|
|
|
|
|
|
// Editing existing instance - copy existing files into draft area.
|
2021-11-24 07:29:43 +00:00
|
|
|
$draftitemid = file_get_submitted_draft_itemid('htmlcertimage');
|
|
|
|
file_prepare_draft_area($draftitemid, \context_system::instance()->id, 'mod_htmlcert', 'image', 0,
|
2017-02-16 12:12:19 +00:00
|
|
|
$this->filemanageroptions);
|
2021-11-24 07:29:43 +00:00
|
|
|
$element = $mform->getElement('htmlcertimage');
|
2013-09-09 08:50:48 +00:00
|
|
|
$element->setValue($draftitemid);
|
|
|
|
}
|
|
|
|
}
|