Small upgrade to fix some guest->mnethostid. MDL-10375
[pfb-moodle.git] / admin / stickyblocks.php
blob6ce5f055bffc372500fe2cf2159304f5797d86e0
1 <?PHP // $Id$
3 require_once('../config.php');
4 require_once($CFG->dirroot.'/my/pagelib.php');
5 require_once($CFG->dirroot.'/lib/pagelib.php');
6 require_once($CFG->dirroot.'/lib/blocklib.php');
8 if (!empty($THEME->customcorners)) {
9 require_once($CFG->dirroot.'/lib/custom_corners_lib.php');
12 $pt = optional_param('pt', null, PARAM_SAFEDIR); //alhanumeric and -
14 $pagetypes = array(PAGE_MY_MOODLE => array('id' => PAGE_MY_MOODLE,
15 'lib' => '/my/pagelib.php',
16 'name' => get_string('mymoodle','admin')),
17 PAGE_COURSE_VIEW => array('id' => PAGE_COURSE_VIEW,
18 'lib' => '/lib/pagelib.php',
19 'name' => get_string('stickyblockscourseview','admin'))
20 // ... more?
23 // for choose_from_menu
24 $options = array();
25 foreach ($pagetypes as $p) {
26 $options[$p['id']] = $p['name'];
29 require_login();
31 require_capability('moodle/site:manageblocks', get_context_instance(CONTEXT_SYSTEM, SITEID));
33 // first thing to do is print the dropdown menu
35 $strtitle = get_string('stickyblocks','admin');
36 $strheading = get_string('adminhelpstickyblocks');
40 if (!empty($pt)) {
42 require_once($CFG->dirroot.$pagetypes[$pt]['lib']);
44 define('ADMIN_STICKYBLOCKS',$pt);
46 $PAGE = page_create_object($pt, SITEID);
47 $blocks = blocks_setup($PAGE,BLOCKS_PINNED_TRUE);
48 $blocks_preferred_width = bounded_number(180, blocks_preferred_width($blocks[BLOCK_POS_LEFT]), 210);
50 print_header($strtitle,$strtitle,'<a href="'.$CFG->wwwroot.'/'.$CFG->admin.'/index.php">'.
51 get_string('administration').'</a> -> '.$strtitle);
53 echo '<table border="0" cellpadding="3" cellspacing="0" width="100%" id="layout-table">';
54 echo '<tr valign="top">';
56 echo '<td valign="top" style="width: '.$blocks_preferred_width.'px;" id="left-column">';
57 if (!empty($THEME->customcorners)) print_custom_corners_start();
58 blocks_print_group($PAGE, $blocks, BLOCK_POS_LEFT);
59 if (!empty($THEME->customcorners)) print_custom_corners_end();
60 echo '</td>';
61 echo '<td valign="top" id="middle-column">';
62 if (!empty($THEME->customcorners)) print_custom_corners_start();
64 } else {
65 require_once($CFG->libdir.'/adminlib.php');
66 admin_externalpage_setup('stickyblocks');
67 admin_externalpage_print_header();
71 print_box_start();
72 print_heading($strheading);
73 popup_form("$CFG->wwwroot/$CFG->admin/stickyblocks.php?pt=", $options, 'selecttype', $pt, 'choose', '', '', false, 'self', get_string('stickyblockspagetype','admin').': ');
74 echo '<p>'.get_string('stickyblocksduplicatenotice','admin').'</p>';
75 print_box_end();
78 if (!empty($pt)) {
79 if (!empty($THEME->customcorners)) print_custom_corners_end();
80 echo '</td>';
81 echo '<td valign="top" style="width: '.$blocks_preferred_width.'px;" id="left-column">';
82 if (!empty($THEME->customcorners)) print_custom_corners_start();
83 blocks_print_group($PAGE, $blocks, BLOCK_POS_RIGHT);
84 if (!empty($THEME->customcorners)) print_custom_corners_end();
85 echo '</td>';
86 echo '</tr></table>';
87 print_footer();
88 } else {
89 admin_externalpage_print_footer();