MDL-27764 restore - always restore as much info as possible (1.9 approach)
[moodle.git] / admin / localplugins.php
blob9146c822aed3f467e2f67abbc8245f762c383162
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Provides an overview of installed local plugins
21 * Displays the list of found local plugins, their version (if found) and
22 * a link to delete the local plugin.
24 * @see http://docs.moodle.org/dev/Local_customisation
25 * @package admin
26 * @copyright 2010 David Mudrak <david.mudrak@gmail.com>
27 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30 require_once(dirname(dirname(__FILE__)) . '/config.php');
31 require_once($CFG->libdir.'/adminlib.php');
32 require_once($CFG->libdir.'/tablelib.php');
34 admin_externalpage_setup('managelocalplugins');
36 $delete = optional_param('delete', '', PARAM_PLUGIN);
37 $confirm = optional_param('confirm', '', PARAM_BOOL);
39 /// If data submitted, then process and store.
41 if (!empty($delete) and confirm_sesskey()) {
42 echo $OUTPUT->header();
43 echo $OUTPUT->heading(get_string('localplugins'));
45 if (!$confirm) {
46 if (get_string_manager()->string_exists('pluginname', 'local_' . $delete)) {
47 $strpluginname = get_string('pluginname', 'local_' . $delete);
48 } else {
49 $strpluginname = $delete;
51 echo $OUTPUT->confirm(get_string('localplugindeleteconfirm', '', $strpluginname),
52 new moodle_url($PAGE->url, array('delete' => $delete, 'confirm' => 1)),
53 $PAGE->url);
54 echo $OUTPUT->footer();
55 die();
57 } else {
58 uninstall_plugin('local', $delete);
59 $a = new stdclass();
60 $a->name = $delete;
61 $pluginlocation = get_plugin_types();
62 $a->directory = $pluginlocation['local'] . '/' . $delete;
63 echo $OUTPUT->notification(get_string('plugindeletefiles', '', $a), 'notifysuccess');
64 echo $OUTPUT->continue_button($PAGE->url);
65 echo $OUTPUT->footer();
66 die();
70 echo $OUTPUT->header();
71 echo $OUTPUT->heading(get_string('localplugins'));
73 /// Print the table of all installed local plugins
75 $table = new flexible_table('localplugins_administration_table');
76 $table->define_columns(array('name', 'version', 'delete'));
77 $table->define_headers(array(get_string('plugin'), get_string('version'), get_string('delete')));
78 $table->define_baseurl($PAGE->url);
79 $table->set_attribute('id', 'localplugins');
80 $table->set_attribute('class', 'generaltable generalbox boxaligncenter boxwidthwide');
81 $table->setup();
83 $plugins = array();
84 foreach (get_plugin_list('local') as $plugin => $plugindir) {
85 if (get_string_manager()->string_exists('pluginname', 'local_' . $plugin)) {
86 $strpluginname = get_string('pluginname', 'local_' . $plugin);
87 } else {
88 $strpluginname = $plugin;
90 $plugins[$plugin] = $strpluginname;
92 collatorlib::asort($plugins);
94 foreach ($plugins as $plugin => $name) {
95 $delete = new moodle_url($PAGE->url, array('delete' => $plugin, 'sesskey' => sesskey()));
96 $delete = html_writer::link($delete, get_string('delete'));
98 $version = get_config('local_' . $plugin);
99 if (!empty($version->version)) {
100 $version = $version->version;
101 } else {
102 $version = '?';
105 $table->add_data(array($name, $version, $delete));
108 $table->print_html();
110 echo $OUTPUT->footer();