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'))
23 // for choose_from_menu
25 foreach ($pagetypes as $p) {
26 $options[$p['id']] = $p['name'];
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');
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();
61 echo '<td valign="top" id="middle-column">';
62 if (!empty($THEME->customcorners
)) print_custom_corners_start();
65 require_once($CFG->libdir
.'/adminlib.php');
66 admin_externalpage_setup('stickyblocks');
67 admin_externalpage_print_header();
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>';
79 if (!empty($THEME->customcorners
)) print_custom_corners_end();
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();
89 admin_externalpage_print_footer();