2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 require_once(dirname(dirname(__FILE__
)) . '/config.php');
18 require_once($CFG->dirroot
. '/repository/lib.php');
19 require_once($CFG->libdir
. '/adminlib.php');
24 $edit = optional_param('edit', 0, PARAM_INT
);
25 $new = optional_param('new', '', PARAM_PLUGIN
);
26 $hide = optional_param('hide', 0, PARAM_INT
);
27 $delete = optional_param('delete', 0, PARAM_INT
);
28 $sure = optional_param('sure', '', PARAM_ALPHA
);
29 $type = optional_param('type', '', PARAM_PLUGIN
);
30 $downloadcontents = optional_param('downloadcontents', false, PARAM_BOOL
);
32 $context = context_system
::instance();
34 $pagename = 'repositorycontroller';
37 $pagename = 'repositoryinstanceedit';
39 $pagename = 'repositorydelete';
41 $pagename = 'repositoryinstancenew';
44 admin_externalpage_setup($pagename, '', null, new moodle_url('/admin/repositoryinstance.php'));
45 require_capability('moodle/site:config', $context);
47 $baseurl = new moodle_url("/$CFG->admin/repositoryinstance.php", array('sesskey'=>sesskey()));
49 $parenturl = new moodle_url("/$CFG->admin/repository.php", array(
55 $parenturl->param('repos', $new);
57 $parenturl->param('repos', $type);
62 if (!empty($edit) ||
!empty($new)) {
64 $instance = repository
::get_instance($edit);
65 $instancetype = repository
::get_type_by_id($instance->options
['typeid']);
66 $classname = 'repository_' . $instancetype->get_typename();
67 $configs = $instance->get_instance_option_names();
68 $plugin = $instancetype->get_typename();
69 $typeid = $instance->options
['typeid'];
76 // display the edit form for this instance
77 $mform = new repository_instance_form('', array('plugin' => $plugin, 'typeid' => $typeid, 'instance' => $instance, 'contextid' => $context->id
));
78 // end setup, begin output
80 if ($mform->is_cancelled()){
83 } else if ($fromform = $mform->get_data()){
86 $settings['name'] = $fromform->name
;
87 if (!$instance->readonly
) {
88 foreach($configs as $config) {
89 if (isset($fromform->$config)) {
90 $settings[$config] = $fromform->$config;
92 $settings[$config] = null;
96 $success = $instance->set_option($settings);
98 $success = repository
::static_function($plugin, 'create', $plugin, 0, $context, $fromform);
99 $data = data_submitted();
102 redirect($parenturl);
104 print_error('instancenotsaved', 'repository', $parenturl);
108 echo $OUTPUT->header();
109 echo $OUTPUT->heading(get_string('configplugin', 'repository_'.$plugin));
110 echo $OUTPUT->box_start();
112 echo $OUTPUT->box_end();
115 } else if (!empty($hide)) {
116 $instance = repository
::get_type_by_typename($hide);
119 } else if (!empty($delete)) {
120 $instance = repository
::get_instance($delete);
121 //if you try to delete an instance set as readonly, display an error message
122 if ($instance->readonly
) {
123 throw new repository_exception('readonlyinstance', 'repository');
126 if ($instance->delete($downloadcontents)) {
127 $deletedstr = get_string('instancedeleted', 'repository');
128 redirect($parenturl, $deletedstr, 3);
130 print_error('instancenotdeleted', 'repository', $parenturl);
135 echo $OUTPUT->header();
136 echo $OUTPUT->box_start('generalbox', 'notice');
137 $continueurl = new moodle_url($baseurl, array(
142 $continueanddownloadurl = new moodle_url($continueurl, array(
143 'downloadcontents' => 1
145 $message = get_string('confirmdelete', 'repository', $instance->name
);
146 echo html_writer
::tag('p', $message);
148 echo $OUTPUT->single_button($continueurl, get_string('continueuninstall', 'repository'));
149 echo $OUTPUT->single_button($continueanddownloadurl, get_string('continueuninstallanddownload', 'repository'));
150 echo $OUTPUT->single_button($parenturl, get_string('cancel'));
152 echo $OUTPUT->box_end();
157 if (!empty($return)) {
158 redirect($parenturl);
160 echo $OUTPUT->footer();