3 // This file is part of Moodle - http://moodle.org/
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.
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/>.
19 * Defines the base class form used by blocks/edit.php to edit block instance configuration.
21 * It works with the {@link block_edit_form} class, or rather the particular
22 * subclass defined by this block, to do the editing.
26 * @copyright 2009 Tim Hunt
27 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30 if (!defined('MOODLE_INTERNAL')) {
31 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
34 require_once($CFG->libdir . '/formslib.php');
35 require_once($CFG->libdir . '/blocklib.php');
38 * The base class form used by blocks/edit.php to edit block instance configuration.
40 * @copyright 2009 Tim Hunt
41 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
43 class block_edit_form extends moodleform {
45 * The block instance we are editing.
50 * The page we are editing this block in association with.
55 function __construct($actionurl, $block, $page) {
57 $this->block = $block;
59 parent::moodleform($actionurl);
62 function definition() {
63 $mform =& $this->_form;
65 // First show fields specific to this type of block.
66 $this->specific_definition($mform);
68 // Then show the fields about where this block appears.
69 $mform->addElement('header', 'whereheader', get_string('wherethisblockappears', 'block'));
71 // If the current weight of the block is out-of-range, add that option in.
72 $blockweight = $this->block->instance->weight;
73 $weightoptions = array();
74 if ($blockweight < -block_manager::MAX_WEIGHT) {
75 $weightoptions[$blockweight] = $blockweight;
77 for ($i = -block_manager::MAX_WEIGHT; $i <= block_manager::MAX_WEIGHT; $i++) {
78 $weightoptions[$i] = $i;
80 if ($blockweight > block_manager::MAX_WEIGHT) {
81 $weightoptions[$blockweight] = $blockweight;
83 $first = reset($weightoptions);
84 $weightoptions[$first] = get_string('bracketfirst', 'block', $first);
85 $last = end($weightoptions);
86 $weightoptions[$last] = get_string('bracketlast', 'block', $last);
88 $regionoptions = $this->page->theme->get_all_block_regions();
90 $parentcontext = get_context_instance_by_id($this->block->instance->parentcontextid);
91 $mform->addElement('hidden', 'bui_parentcontextid', $parentcontext->id);
93 $mform->addElement('static', 'bui_homecontext', get_string('createdat', 'block'), print_context_name($parentcontext));
94 $mform->addHelpButton('bui_homecontext', 'createdat', 'block');
96 // parse pagetype patterns
97 $bits = explode('-', $this->page->pagetype);
99 $contextoptions = array();
100 if ( ($parentcontext->contextlevel == CONTEXT_COURSE && $parentcontext->instanceid == SITEID) ||
101 ($parentcontext->contextlevel == CONTEXT_SYSTEM)) { // Home page
102 if ($bits[0] == 'tag' || $bits[0] == 'admin') {
103 // tag and admin pages always use system context
104 // the contexts options don't make differences, so we use
105 // page type patterns only
106 $mform->addElement('hidden', 'bui_contexts', BUI_CONTEXTS_ENTIRE_SITE);
108 $contextoptions[BUI_CONTEXTS_FRONTPAGE_ONLY] = get_string('showonfrontpageonly', 'block');
109 $contextoptions[BUI_CONTEXTS_FRONTPAGE_SUBS] = get_string('showonfrontpageandsubs', 'block');
110 $contextoptions[BUI_CONTEXTS_ENTIRE_SITE] = get_string('showonentiresite', 'block');
111 $mform->addElement('select', 'bui_contexts', get_string('contexts', 'block'), $contextoptions);
112 $mform->addHelpButton('bui_contexts', 'contexts', 'block');
114 } else if ($parentcontext->contextlevel == CONTEXT_COURSE) {
115 // 0 means display on current context only, not child contexts
116 // but if course managers select mod-* as pagetype patterns, block system will overwrite this option
117 // to 1 (display on current context and child contexts)
118 $mform->addElement('hidden', 'bui_contexts', BUI_CONTEXTS_CURRENT);
119 } else if ($parentcontext->contextlevel == CONTEXT_MODULE or $parentcontext->contextlevel == CONTEXT_USER) {
120 // module context doesn't have child contexts, so display in current context only
121 $mform->addElement('hidden', 'bui_contexts', BUI_CONTEXTS_CURRENT);
123 $parentcontextname = print_context_name($parentcontext);
124 $contextoptions[BUI_CONTEXTS_CURRENT] = get_string('showoncontextonly', 'block', $parentcontextname);
125 $contextoptions[BUI_CONTEXTS_CURRENT_SUBS] = get_string('showoncontextandsubs', 'block', $parentcontextname);
126 $mform->addElement('select', 'bui_contexts', get_string('contexts', 'block'), $contextoptions);
129 // Generate pagetype patterns by callbacks
130 $displaypagetypewarning = false;
131 $pagetypelist = generate_page_type_patterns($this->page->pagetype, $parentcontext, $this->page->context);
132 if (!array_key_exists($this->block->instance->pagetypepattern, $pagetypelist)) {
133 // Pushing block's existing page type pattern
134 $pagetypestringname = 'page-'.str_replace('*', 'x', $this->block->instance->pagetypepattern);
135 if (get_string_manager()->string_exists($pagetypestringname, 'pagetype')) {
136 $pagetypelist[$this->block->instance->pagetypepattern] = get_string($pagetypestringname, 'pagetype');
138 //as a last resort we could put the page type pattern in the select box
139 //however this causes mod-data-view to be added if the only option available is mod-data-*
140 // so we are just showing a warning to users about their prev setting being reset
141 $displaypagetypewarning = true;
145 // hide page type pattern select box if there is only one choice
146 if (count($pagetypelist) > 1) {
147 if ($displaypagetypewarning) {
148 $mform->addElement('static', 'pagetypewarning', '', get_string('pagetypewarning','block'));
151 $mform->addElement('select', 'bui_pagetypepattern', get_string('restrictpagetypes', 'block'), $pagetypelist);
153 $value = array_pop(array_keys($pagetypelist));
154 $mform->addElement('hidden', 'bui_pagetypepattern', $value);
157 if ($this->page->subpage) {
158 if ($parentcontext->contextlevel == CONTEXT_USER) {
159 $mform->addElement('hidden', 'bui_subpagepattern', '%@NULL@%');
161 $subpageoptions = array(
162 '%@NULL@%' => get_string('anypagematchingtheabove', 'block'),
163 $this->page->subpage => get_string('thisspecificpage', 'block', $this->page->subpage),
165 $mform->addElement('select', 'bui_subpagepattern', get_string('subpages', 'block'), $subpageoptions);
169 $defaultregionoptions = $regionoptions;
170 $defaultregion = $this->block->instance->defaultregion;
171 if (!array_key_exists($defaultregion, $defaultregionoptions)) {
172 $defaultregionoptions[$defaultregion] = $defaultregion;
174 $mform->addElement('select', 'bui_defaultregion', get_string('defaultregion', 'block'), $defaultregionoptions);
175 $mform->addHelpButton('bui_defaultregion', 'defaultregion', 'block');
177 $mform->addElement('select', 'bui_defaultweight', get_string('defaultweight', 'block'), $weightoptions);
178 $mform->addHelpButton('bui_defaultweight', 'defaultweight', 'block');
180 // Where this block is positioned on this page.
181 $mform->addElement('header', 'whereheader', get_string('onthispage', 'block'));
183 $mform->addElement('selectyesno', 'bui_visible', get_string('visible', 'block'));
185 $blockregion = $this->block->instance->region;
186 if (!array_key_exists($blockregion, $regionoptions)) {
187 $regionoptions[$blockregion] = $blockregion;
189 $mform->addElement('select', 'bui_region', get_string('region', 'block'), $regionoptions);
191 $mform->addElement('select', 'bui_weight', get_string('weight', 'block'), $weightoptions);
193 $pagefields = array('bui_visible', 'bui_region', 'bui_weight');
194 if (!$this->block->user_can_edit()) {
195 $mform->hardFreezeAllVisibleExcept($pagefields);
197 if (!$this->page->user_can_edit_blocks()) {
198 $mform->hardFreeze($pagefields);
201 $this->add_action_buttons();
204 function set_data($defaults) {
205 // Prefix bui_ on all the core field names.
206 $blockfields = array('showinsubcontexts', 'pagetypepattern', 'subpagepattern', 'parentcontextid',
207 'defaultregion', 'defaultweight', 'visible', 'region', 'weight');
208 foreach ($blockfields as $field) {
209 $newname = 'bui_' . $field;
210 $defaults->$newname = $defaults->$field;
213 // Copy block config into config_ fields.
214 if (!empty($this->block->config)) {
215 foreach ($this->block->config as $field => $value) {
216 $configfield = 'config_' . $field;
217 $defaults->$configfield = $value;
221 // Munge ->subpagepattern becuase HTML selects don't play nicely with NULLs.
222 if (empty($defaults->bui_subpagepattern)) {
223 $defaults->bui_subpagepattern = '%@NULL@%';
226 $systemcontext = get_context_instance(CONTEXT_SYSTEM);
227 if ($defaults->parentcontextid == $systemcontext->id) {
228 $defaults->bui_contexts = BUI_CONTEXTS_ENTIRE_SITE; // System-wide and sticky
230 $defaults->bui_contexts = $defaults->bui_showinsubcontexts;
233 parent::set_data($defaults);
237 * Override this to create any form fields specific to this type of block.
238 * @param object $mform the form being built.
240 protected function specific_definition($mform) {
241 // By default, do nothing.