mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
|
|
if (!defined('MOODLE_INTERNAL')) {
|
|
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
|
}
|
|
|
|
require_once $CFG->libdir.'/formslib.php';
|
|
|
|
class admin_uploadpicture_form extends moodleform {
|
|
function definition (){
|
|
global $CFG, $USER;
|
|
|
|
$mform =& $this->_form;
|
|
|
|
$mform->addElement('header', 'settingsheader', get_string('upload'));
|
|
|
|
|
|
$options = array();
|
|
$options['accepted_types'] = array('archive');
|
|
$mform->addElement('filepicker', 'userpicturesfile', get_string('file'), 'size="40"', $options);
|
|
$mform->addRule('userpicturesfile', null, 'required');
|
|
|
|
$choices =& $this->_customdata;
|
|
$mform->addElement('select', 'userfield', get_string('uploadpicture_userfield', 'admin'), $choices);
|
|
$mform->setType('userfield', PARAM_INT);
|
|
|
|
$choices = array( 0 => get_string('no'), 1 => get_string('yes') );
|
|
$mform->addElement('select', 'overwritepicture', get_string('uploadpicture_overwrite', 'admin'), $choices);
|
|
$mform->setType('overwritepicture', PARAM_INT);
|
|
|
|
$this->add_action_buttons(false, get_string('uploadpictures', 'admin'));
|
|
}
|
|
}
|
|
|