$context = get_context_instance(CONTEXT_USER, $USER->id);
if ($iscurrentuser && has_capability('moodle/user:manageownfiles', $context)) {
- $url = new moodle_url('/user/files.php');
+ $url = new moodle_url('/user/filesedit.php');
$usernode->add(get_string('myfiles'), $url, self::TYPE_SETTING);
}
}
$returnurl = optional_param('returnurl', '', PARAM_URL);
+$returnbutton = true;
if (empty($returnurl)) {
- if (!empty($_SERVER["HTTP_REFERER"])) {
- $returnurl = $_SERVER["HTTP_REFERER"];
- } else {
- $returnurl = new moodle_url('/user/files.php');
- }
+ $returnbutton = false;
+ $returnurl = new moodle_url('/user/filesedit.php');
}
$context = get_context_instance(CONTEXT_USER, $USER->id);
$title = get_string('myfiles');
$struser = get_string('user');
-$PAGE->set_url('/user/files.php');
+$PAGE->set_url('/user/filesedit.php');
$PAGE->set_context($context);
$PAGE->set_title($title);
$PAGE->set_heading($title);
$options = array('subdirs'=>1, 'maxbytes'=>$CFG->userquota, 'maxfiles'=>-1, 'accepted_types'=>'*', 'return_types'=>FILE_INTERNAL);
file_prepare_standard_filemanager($data, 'files', $options, $context, 'user', 'private', 0);
-$mform = new user_filesedit_form(null, array('data'=>$data, 'options'=>$options));
+$mform = new user_filesedit_form(null, array('data'=>$data, 'options'=>$options, 'cancelbutton'=>$returnbutton));
if ($mform->is_cancelled()) {
redirect($returnurl);
function definition() {
$mform = $this->_form;
- $data = $this->_customdata['data'];
- $options = $this->_customdata['options'];
+ $data = $this->_customdata['data'];
+ $options = $this->_customdata['options'];
+ $cancelbutton = isset($this->_customdata['cancelbutton']) ? $this->_customdata['cancelbutton'] : true;
$mform->addElement('filemanager', 'files_filemanager', get_string('files'), null, $options);
$mform->addElement('hidden', 'returnurl', $data->returnurl);
- $this->add_action_buttons(true, get_string('savechanges'));
+ $this->add_action_buttons($cancelbutton, get_string('savechanges'));
$this->set_data($data);
}