MDL-54734 user: Add tests to demonstrate multi-user issues
[moodle.git] / admin / blocks.php
blob77febe60ed75164f8c110e5e4d5e4d4a3dc7f256
1 <?php
3 // Allows the admin to configure blocks (hide/show, uninstall and configure)
5 require_once('../config.php');
6 require_once($CFG->libdir.'/adminlib.php');
7 require_once($CFG->libdir.'/tablelib.php');
9 admin_externalpage_setup('manageblocks');
11 $confirm = optional_param('confirm', 0, PARAM_BOOL);
12 $hide = optional_param('hide', 0, PARAM_INT);
13 $show = optional_param('show', 0, PARAM_INT);
14 $unprotect = optional_param('unprotect', 0, PARAM_INT);
15 $protect = optional_param('protect', 0, PARAM_INT);
17 /// Print headings
19 $strmanageblocks = get_string('manageblocks');
20 $struninstall = get_string('uninstallplugin', 'core_admin');
21 $strversion = get_string('version');
22 $strhide = get_string('hide');
23 $strshow = get_string('show');
24 $strsettings = get_string('settings');
25 $strcourses = get_string('blockinstances', 'admin');
26 $strname = get_string('name');
27 $strshowblockcourse = get_string('showblockcourse');
28 $strprotecthdr = get_string('blockprotect', 'admin'). $OUTPUT->help_icon('blockprotect','admin');
29 $strprotect = get_string('blockprotect', 'admin');
30 $strunprotect = get_string('blockunprotect', 'admin');
32 /// If data submitted, then process and store.
34 if (!empty($hide) && confirm_sesskey()) {
35 if (!$block = $DB->get_record('block', array('id'=>$hide))) {
36 print_error('blockdoesnotexist', 'error');
38 $DB->set_field('block', 'visible', '0', array('id'=>$block->id)); // Hide block
39 core_plugin_manager::reset_caches();
40 admin_get_root(true, false); // settings not required - only pages
43 if (!empty($show) && confirm_sesskey() ) {
44 if (!$block = $DB->get_record('block', array('id'=>$show))) {
45 print_error('blockdoesnotexist', 'error');
47 $DB->set_field('block', 'visible', '1', array('id'=>$block->id)); // Show block
48 core_plugin_manager::reset_caches();
49 admin_get_root(true, false); // settings not required - only pages
52 if (!isset($CFG->undeletableblocktypes) || (!is_array($CFG->undeletableblocktypes) && !is_string($CFG->undeletableblocktypes))) {
53 $undeletableblocktypes = array('navigation', 'settings');
54 } else if (is_string($CFG->undeletableblocktypes)) {
55 $undeletableblocktypes = explode(',', $CFG->undeletableblocktypes);
56 } else {
57 $undeletableblocktypes = $CFG->undeletableblocktypes;
60 if (!empty($protect) && confirm_sesskey()) {
61 if (!$block = $DB->get_record('block', array('id'=>$protect))) {
62 print_error('blockdoesnotexist', 'error');
64 if (!in_array($block->name, $undeletableblocktypes)) {
65 $undeletableblocktypes[] = $block->name;
66 set_config('undeletableblocktypes', implode(',', $undeletableblocktypes));
68 admin_get_root(true, false); // settings not required - only pages
71 if (!empty($unprotect) && confirm_sesskey()) {
72 if (!$block = $DB->get_record('block', array('id'=>$unprotect))) {
73 print_error('blockdoesnotexist', 'error');
75 if (in_array($block->name, $undeletableblocktypes)) {
76 $undeletableblocktypes = array_diff($undeletableblocktypes, array($block->name));
77 set_config('undeletableblocktypes', implode(',', $undeletableblocktypes));
79 admin_get_root(true, false); // settings not required - only pages
82 echo $OUTPUT->header();
83 echo $OUTPUT->heading($strmanageblocks);
85 /// Main display starts here
87 /// Get and sort the existing blocks
89 if (!$blocks = $DB->get_records('block', array(), 'name ASC')) {
90 print_error('noblocks', 'error'); // Should never happen
93 $incompatible = array();
95 /// Print the table of all blocks
97 $table = new flexible_table('admin-blocks-compatible');
99 $table->define_columns(array('name', 'instances', 'version', 'hideshow', 'undeletable', 'settings', 'uninstall'));
100 $table->define_headers(array($strname, $strcourses, $strversion, $strhide.'/'.$strshow, $strprotecthdr, $strsettings, $struninstall));
101 $table->define_baseurl($CFG->wwwroot.'/'.$CFG->admin.'/blocks.php');
102 $table->set_attribute('class', 'admintable blockstable generaltable');
103 $table->set_attribute('id', 'compatibleblockstable');
104 $table->setup();
105 $tablerows = array();
107 // Sort blocks using current locale.
108 $blocknames = array();
109 foreach ($blocks as $blockid=>$block) {
110 $blockname = $block->name;
111 if (file_exists("$CFG->dirroot/blocks/$blockname/block_$blockname.php")) {
112 $blocknames[$blockid] = get_string('pluginname', 'block_'.$blockname);
113 } else {
114 $blocknames[$blockid] = $blockname;
117 core_collator::asort($blocknames);
119 foreach ($blocknames as $blockid=>$strblockname) {
120 $block = $blocks[$blockid];
121 $blockname = $block->name;
122 $dbversion = get_config('block_'.$block->name, 'version');
124 if (!file_exists("$CFG->dirroot/blocks/$blockname/block_$blockname.php")) {
125 $blockobject = false;
126 $strblockname = '<span class="notifyproblem">'.$strblockname.' ('.get_string('missingfromdisk').')</span>';
127 $plugin = new stdClass();
128 $plugin->version = $dbversion;
130 } else {
131 $plugin = new stdClass();
132 $plugin->version = '???';
133 if (file_exists("$CFG->dirroot/blocks/$blockname/version.php")) {
134 include("$CFG->dirroot/blocks/$blockname/version.php");
137 if (!$blockobject = block_instance($block->name)) {
138 $incompatible[] = $block;
139 continue;
143 if ($uninstallurl = core_plugin_manager::instance()->get_uninstall_url('block_'.$blockname, 'manage')) {
144 $uninstall = html_writer::link($uninstallurl, $struninstall);
145 } else {
146 $uninstall = '';
149 $settings = ''; // By default, no configuration
150 if ($blockobject and $blockobject->has_config()) {
151 $blocksettings = admin_get_root()->locate('blocksetting' . $block->name);
153 if ($blocksettings instanceof admin_externalpage) {
154 $settings = '<a href="' . $blocksettings->url . '">' . get_string('settings') . '</a>';
155 } else if ($blocksettings instanceof admin_settingpage) {
156 $settings = '<a href="'.$CFG->wwwroot.'/'.$CFG->admin.'/settings.php?section=blocksetting'.$block->name.'">'.$strsettings.'</a>';
157 } else {
158 debugging('Warning: block_'.$block->name.' returns true in has_config() but does not provide a settings.php file',
159 DEBUG_DEVELOPER);
163 // MDL-11167, blocks can be placed on mymoodle, or the blogs page
164 // and it should not show up on course search page
166 $totalcount = $DB->count_records('block_instances', array('blockname'=>$blockname));
167 $count = $DB->count_records('block_instances', array('blockname'=>$blockname, 'pagetypepattern'=>'course-view-*'));
169 if ($count>0) {
170 $blocklist = "<a href=\"{$CFG->wwwroot}/course/search.php?blocklist=$blockid&amp;sesskey=".sesskey()."\" ";
171 $blocklist .= "title=\"$strshowblockcourse\" >$totalcount</a>";
173 else {
174 $blocklist = "$totalcount";
176 $class = ''; // Nothing fancy, by default
178 if (!$blockobject) {
179 // ignore
180 $visible = '';
181 } else if ($blocks[$blockid]->visible) {
182 $visible = '<a href="blocks.php?hide='.$blockid.'&amp;sesskey='.sesskey().'" title="'.$strhide.'">'.
183 '<img src="'.$OUTPUT->pix_url('t/hide') . '" class="iconsmall" alt="'.$strhide.'" /></a>';
184 } else {
185 $visible = '<a href="blocks.php?show='.$blockid.'&amp;sesskey='.sesskey().'" title="'.$strshow.'">'.
186 '<img src="'.$OUTPUT->pix_url('t/show') . '" class="iconsmall" alt="'.$strshow.'" /></a>';
187 $class = 'dimmed_text';
190 if ($dbversion == $plugin->version) {
191 $version = $dbversion;
192 } else {
193 $version = "$dbversion ($plugin->version)";
196 if (!$blockobject) {
197 // ignore
198 $undeletable = '';
199 } else if (in_array($blockname, $undeletableblocktypes)) {
200 $undeletable = '<a href="blocks.php?unprotect='.$blockid.'&amp;sesskey='.sesskey().'" title="'.$strunprotect.'">'.
201 '<img src="'.$OUTPUT->pix_url('t/unlock') . '" class="iconsmall" alt="'.$strunprotect.'" /></a>';
202 } else {
203 $undeletable = '<a href="blocks.php?protect='.$blockid.'&amp;sesskey='.sesskey().'" title="'.$strprotect.'">'.
204 '<img src="'.$OUTPUT->pix_url('t/lock') . '" class="iconsmall" alt="'.$strprotect.'" /></a>';
207 $row = array(
208 $strblockname,
209 $blocklist,
210 $version,
211 $visible,
212 $undeletable,
213 $settings,
214 $uninstall,
216 $table->add_data($row, $class);
219 $table->print_html();
221 if (!empty($incompatible)) {
222 echo $OUTPUT->heading(get_string('incompatibleblocks', 'blockstable', 'admin'));
224 $table = new flexible_table('admin-blocks-incompatible');
226 $table->define_columns(array('block', 'uninstall'));
227 $table->define_headers(array($strname, $struninstall));
228 $table->define_baseurl($CFG->wwwroot.'/'.$CFG->admin.'/blocks.php');
230 $table->set_attribute('class', 'incompatibleblockstable generaltable');
232 $table->setup();
234 foreach ($incompatible as $block) {
235 if ($uninstallurl = core_plugin_manager::instance()->get_uninstall_url('block_'.$block->name, 'manage')) {
236 $uninstall = html_writer::link($uninstallurl, $struninstall);
237 } else {
238 $uninstall = '';
240 $table->add_data(array(
241 $block->name,
242 $uninstall,
245 $table->print_html();
248 echo $OUTPUT->footer();