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 * Block Class and Functions
21 * This file defines the {@link block_manager} class,
25 * @copyright 1999 onwards Martin Dougiamas http://dougiamas.com
26 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 defined('MOODLE_INTERNAL') ||
die();
32 * Default names for the block regions in the standard theme.
34 define('BLOCK_POS_LEFT', 'side-pre');
35 define('BLOCK_POS_RIGHT', 'side-post');
38 define('BUI_CONTEXTS_FRONTPAGE_ONLY', 0);
39 define('BUI_CONTEXTS_FRONTPAGE_SUBS', 1);
40 define('BUI_CONTEXTS_ENTIRE_SITE', 2);
42 define('BUI_CONTEXTS_CURRENT', 0);
43 define('BUI_CONTEXTS_CURRENT_SUBS', 1);
45 // Position of "Add block" control, to be used in theme config as a value for $THEME->addblockposition:
46 // - default: as a fake block that is displayed in editing mode
47 // - flatnav: "Add block" item in the flat navigation drawer in editing mode
48 // - custom: none of the above, theme will take care of displaying the control.
49 define('BLOCK_ADDBLOCK_POSITION_DEFAULT', 0);
50 define('BLOCK_ADDBLOCK_POSITION_FLATNAV', 1);
51 define('BLOCK_ADDBLOCK_POSITION_CUSTOM', -1);
54 * Exception thrown when someone tried to do something with a block that does
55 * not exist on a page.
57 * @copyright 2009 Tim Hunt
58 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
61 class block_not_on_page_exception
extends moodle_exception
{
64 * @param int $instanceid the block instance id of the block that was looked for.
65 * @param object $page the current page.
67 public function __construct($instanceid, $page) {
69 $a->instanceid
= $instanceid;
70 $a->url
= $page->url
->out();
71 parent
::__construct('blockdoesnotexistonpage', '', $page->url
->out(), $a);
76 * This class keeps track of the block that should appear on a moodle_page.
78 * The page to work with as passed to the constructor.
80 * @copyright 2009 Tim Hunt
81 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
86 * The UI normally only shows block weights between -MAX_WEIGHT and MAX_WEIGHT,
87 * although other weights are valid.
89 const MAX_WEIGHT
= 10;
91 /// Field declarations =========================================================
94 * the moodle_page we are managing blocks for.
99 /** @var array region name => 1.*/
100 protected $regions = array();
102 /** @var string the region where new blocks are added.*/
103 protected $defaultregion = null;
105 /** @var array will be $DB->get_records('blocks') */
106 protected $allblocks = null;
109 * @var array blocks that this user can add to this page. Will be a subset
110 * of $allblocks, but with array keys block->name. Access this via the
111 * {@link get_addable_blocks()} method to ensure it is lazy-loaded.
113 protected $addableblocks = null;
116 * Will be an array region-name => array(db rows loaded in load_blocks);
119 protected $birecordsbyregion = null;
122 * array region-name => array(block objects); populated as necessary by
123 * the ensure_instances_exist method.
126 protected $blockinstances = array();
129 * array region-name => array(block_contents objects) what actually needs to
130 * be displayed in each region.
133 protected $visibleblockcontent = array();
136 * array region-name => array(block_contents objects) extra block-like things
137 * to be displayed in each region, before the real blocks.
140 protected $extracontent = array();
143 * Used by the block move id, to track whether a block is currently being moved.
145 * When you click on the move icon of a block, first the page needs to reload with
146 * extra UI for choosing a new position for a particular block. In that situation
147 * this field holds the id of the block being moved.
151 protected $movingblock = null;
154 * Show only fake blocks
156 protected $fakeblocksonly = false;
158 /// Constructor ================================================================
162 * @param object $page the moodle_page object object we are managing the blocks for,
163 * or a reasonable faxilimily. (See the comment at the top of this class
164 * and {@link http://en.wikipedia.org/wiki/Duck_typing})
166 public function __construct($page) {
170 /// Getter methods =============================================================
173 * Get an array of all region names on this page where a block may appear
175 * @return array the internal names of the regions on this page where block may appear.
177 public function get_regions() {
178 if (is_null($this->defaultregion
)) {
179 $this->page
->initialise_theme_and_output();
181 return array_keys($this->regions
);
185 * Get the region name of the region blocks are added to by default
187 * @return string the internal names of the region where new blocks are added
188 * by default, and where any blocks from an unrecognised region are shown.
189 * (Imagine that blocks were added with one theme selected, then you switched
190 * to a theme with different block positions.)
192 public function get_default_region() {
193 $this->page
->initialise_theme_and_output();
194 return $this->defaultregion
;
198 * The list of block types that may be added to this page.
200 * @return array block name => record from block table.
202 public function get_addable_blocks() {
203 $this->check_is_loaded();
205 if (!is_null($this->addableblocks
)) {
206 return $this->addableblocks
;
210 $this->addableblocks
= array();
212 $allblocks = blocks_get_record();
213 if (empty($allblocks)) {
214 return $this->addableblocks
;
217 $unaddableblocks = self
::get_undeletable_block_types();
218 $requiredbythemeblocks = $this->get_required_by_theme_block_types();
219 $pageformat = $this->page
->pagetype
;
220 foreach($allblocks as $block) {
221 if (!$bi = block_instance($block->name
)) {
224 if ($block->visible
&& !in_array($block->name
, $unaddableblocks) &&
225 !in_array($block->name
, $requiredbythemeblocks) &&
226 ($bi->instance_allow_multiple() ||
!$this->is_block_present($block->name
)) &&
227 blocks_name_allowed_in_format($block->name
, $pageformat) &&
228 $bi->user_can_addto($this->page
)) {
229 $block->title
= $bi->get_title();
230 $this->addableblocks
[$block->name
] = $block;
234 core_collator
::asort_objects_by_property($this->addableblocks
, 'title');
235 return $this->addableblocks
;
239 * Given a block name, find out of any of them are currently present in the page
241 * @param string $blockname - the basic name of a block (eg "navigation")
242 * @return boolean - is there one of these blocks in the current page?
244 public function is_block_present($blockname) {
245 if (empty($this->blockinstances
)) {
249 $requiredbythemeblocks = $this->get_required_by_theme_block_types();
250 foreach ($this->blockinstances
as $region) {
251 foreach ($region as $instance) {
252 if (empty($instance->instance
->blockname
)) {
255 if ($instance->instance
->blockname
== $blockname) {
256 if ($instance->instance
->requiredbytheme
) {
257 if (!in_array($blockname, $requiredbythemeblocks)) {
269 * Find out if a block type is known by the system
271 * @param string $blockname the name of the type of block.
272 * @param boolean $includeinvisible if false (default) only check 'visible' blocks, that is, blocks enabled by the admin.
273 * @return boolean true if this block in installed.
275 public function is_known_block_type($blockname, $includeinvisible = false) {
276 $blocks = $this->get_installed_blocks();
277 foreach ($blocks as $block) {
278 if ($block->name
== $blockname && ($includeinvisible ||
$block->visible
)) {
286 * Find out if a region exists on a page
288 * @param string $region a region name
289 * @return boolean true if this region exists on this page.
291 public function is_known_region($region) {
292 if (empty($region)) {
295 return array_key_exists($region, $this->regions
);
299 * Get an array of all blocks within a given region
301 * @param string $region a block region that exists on this page.
302 * @return array of block instances.
304 public function get_blocks_for_region($region) {
305 $this->check_is_loaded();
306 $this->ensure_instances_exist($region);
307 return $this->blockinstances
[$region];
311 * Returns an array of block content objects that exist in a region
313 * @param string $region a block region that exists on this page.
314 * @return array of block block_contents objects for all the blocks in a region.
316 public function get_content_for_region($region, $output) {
317 $this->check_is_loaded();
318 $this->ensure_content_created($region, $output);
319 return $this->visibleblockcontent
[$region];
323 * Returns an array of block content objects for all the existings regions
325 * @param renderer_base $output the rendered to use
326 * @return array of block block_contents objects for all the blocks in all regions.
329 public function get_content_for_all_regions($output) {
331 $this->check_is_loaded();
333 foreach ($this->regions
as $region => $val) {
334 $this->ensure_content_created($region, $output);
335 $contents[$region] = $this->visibleblockcontent
[$region];
341 * Helper method used by get_content_for_region.
342 * @param string $region region name
343 * @param float $weight weight. May be fractional, since you may want to move a block
344 * between ones with weight 2 and 3, say ($weight would be 2.5).
345 * @return string URL for moving block $this->movingblock to this position.
347 protected function get_move_target_url($region, $weight) {
348 return new moodle_url($this->page
->url
, array('bui_moveid' => $this->movingblock
,
349 'bui_newregion' => $region, 'bui_newweight' => $weight, 'sesskey' => sesskey()));
353 * Determine whether a region contains anything. (Either any real blocks, or
354 * the add new block UI.)
356 * (You may wonder why the $output parameter is required. Unfortunately,
357 * because of the way that blocks work, the only reliable way to find out
358 * if a block will be visible is to get the content for output, and to
359 * get the content, you need a renderer. Fortunately, this is not a
360 * performance problem, because we cache the output that is generated, and
361 * in almost every case where we call region_has_content, we are about to
362 * output the blocks anyway, so we are not doing wasted effort.)
364 * @param string $region a block region that exists on this page.
365 * @param core_renderer $output a core_renderer. normally the global $OUTPUT.
366 * @return boolean Whether there is anything in this region.
368 public function region_has_content($region, $output) {
370 if (!$this->is_known_region($region)) {
373 $this->check_is_loaded();
374 $this->ensure_content_created($region, $output);
375 // if ($this->page->user_is_editing() && $this->page->user_can_edit_blocks()) {
376 // Mark Nielsen's patch - part 1
377 if ($this->page
->user_is_editing() && $this->page
->user_can_edit_blocks() && $this->movingblock
) {
378 // If editing is on, we need all the block regions visible, for the
382 return !empty($this->visibleblockcontent
[$region]) ||
!empty($this->extracontent
[$region]);
386 * Get an array of all of the installed blocks.
388 * @return array contents of the block table.
390 public function get_installed_blocks() {
392 if (is_null($this->allblocks
)) {
393 $this->allblocks
= $DB->get_records('block');
395 return $this->allblocks
;
399 * @return array names of block types that must exist on every page with this theme.
401 public function get_required_by_theme_block_types() {
402 $requiredbythemeblocks = false;
403 if (isset($this->page
->theme
->requiredblocks
)) {
404 $requiredbythemeblocks = $this->page
->theme
->requiredblocks
;
407 if ($requiredbythemeblocks === false) {
408 return array('navigation', 'settings');
409 } else if ($requiredbythemeblocks === '') {
411 } else if (is_string($requiredbythemeblocks)) {
412 return explode(',', $requiredbythemeblocks);
414 return $requiredbythemeblocks;
419 * Make this block type undeletable and unaddable.
421 * @param mixed $blockidorname string or int
423 public static function protect_block($blockidorname) {
426 $syscontext = context_system
::instance();
428 require_capability('moodle/site:config', $syscontext);
431 if (is_int($blockidorname)) {
432 $block = $DB->get_record('block', array('id' => $blockidorname), 'id, name', MUST_EXIST
);
434 $block = $DB->get_record('block', array('name' => $blockidorname), 'id, name', MUST_EXIST
);
436 $undeletableblocktypes = self
::get_undeletable_block_types();
437 if (!in_array($block->name
, $undeletableblocktypes)) {
438 $undeletableblocktypes[] = $block->name
;
439 set_config('undeletableblocktypes', implode(',', $undeletableblocktypes));
440 add_to_config_log('block_protect', "0", "1", $block->name
);
445 * Make this block type deletable and addable.
447 * @param mixed $blockidorname string or int
449 public static function unprotect_block($blockidorname) {
452 $syscontext = context_system
::instance();
454 require_capability('moodle/site:config', $syscontext);
457 if (is_int($blockidorname)) {
458 $block = $DB->get_record('block', array('id' => $blockidorname), 'id, name', MUST_EXIST
);
460 $block = $DB->get_record('block', array('name' => $blockidorname), 'id, name', MUST_EXIST
);
462 $undeletableblocktypes = self
::get_undeletable_block_types();
463 if (in_array($block->name
, $undeletableblocktypes)) {
464 $undeletableblocktypes = array_diff($undeletableblocktypes, array($block->name
));
465 set_config('undeletableblocktypes', implode(',', $undeletableblocktypes));
466 add_to_config_log('block_protect', "1", "0", $block->name
);
472 * Get the list of "protected" blocks via admin block manager ui.
474 * @return array names of block types that cannot be added or deleted. E.g. array('navigation','settings').
476 public static function get_undeletable_block_types() {
478 $undeletableblocks = false;
479 if (isset($CFG->undeletableblocktypes
)) {
480 $undeletableblocks = $CFG->undeletableblocktypes
;
483 if (empty($undeletableblocks)) {
485 } else if (is_string($undeletableblocks)) {
486 return explode(',', $undeletableblocks);
488 return $undeletableblocks;
492 /// Setter methods =============================================================
495 * Add a region to a page
497 * @param string $region add a named region where blocks may appear on the current page.
498 * This is an internal name, like 'side-pre', not a string to display in the UI.
499 * @param bool $custom True if this is a custom block region, being added by the page rather than the theme layout.
501 public function add_region($region, $custom = true) {
503 $this->check_not_yet_loaded();
505 if (array_key_exists($region, $this->regions
)) {
506 // This here is EXACTLY why we should not be adding block regions into a page. It should
507 // ALWAYS be done in a theme layout.
508 debugging('A custom region conflicts with a block region in the theme.', DEBUG_DEVELOPER
);
510 // We need to register this custom region against the page type being used.
511 // This allows us to check, when performing block actions, that unrecognised regions can be worked with.
512 $type = $this->page
->pagetype
;
513 if (!isset($SESSION->custom_block_regions
)) {
514 $SESSION->custom_block_regions
= array($type => array($region));
515 } else if (!isset($SESSION->custom_block_regions
[$type])) {
516 $SESSION->custom_block_regions
[$type] = array($region);
517 } else if (!in_array($region, $SESSION->custom_block_regions
[$type])) {
518 $SESSION->custom_block_regions
[$type][] = $region;
521 $this->regions
[$region] = 1;
523 // Checking the actual property instead of calling get_default_region as it ends up in a recursive call.
524 if (empty($this->defaultregion
)) {
525 $this->set_default_region($region);
530 * Add an array of regions
533 * @param array $regions this utility method calls add_region for each array element.
535 public function add_regions($regions, $custom = true) {
536 foreach ($regions as $region) {
537 $this->add_region($region, $custom);
542 * Finds custom block regions associated with a page type and registers them with this block manager.
544 * @param string $pagetype
546 public function add_custom_regions_for_pagetype($pagetype) {
548 if (isset($SESSION->custom_block_regions
[$pagetype])) {
549 foreach ($SESSION->custom_block_regions
[$pagetype] as $customregion) {
550 $this->add_region($customregion, false);
556 * Set the default region for new blocks on the page
558 * @param string $defaultregion the internal names of the region where new
559 * blocks should be added by default, and where any blocks from an
560 * unrecognised region are shown.
562 public function set_default_region($defaultregion) {
563 $this->check_not_yet_loaded();
564 if ($defaultregion) {
565 $this->check_region_is_known($defaultregion);
567 $this->defaultregion
= $defaultregion;
571 * Add something that looks like a block, but which isn't an actual block_instance,
574 * @param block_contents $bc the content of the block-like thing.
575 * @param string $region a block region that exists on this page.
577 public function add_fake_block($bc, $region) {
578 $this->page
->initialise_theme_and_output();
579 if (!$this->is_known_region($region)) {
580 $region = $this->get_default_region();
582 if (array_key_exists($region, $this->visibleblockcontent
)) {
583 throw new coding_exception('block_manager has already prepared the blocks in region ' .
584 $region . 'for output. It is too late to add a fake block.');
586 if (!isset($bc->attributes
['data-block'])) {
587 $bc->attributes
['data-block'] = '_fake';
589 $bc->attributes
['class'] .= ' block_fake';
590 $this->extracontent
[$region][] = $bc;
594 * Checks to see whether all of the blocks within the given region are docked
596 * @see region_uses_dock
597 * @param string $region
598 * @return bool True if all of the blocks within that region are docked
600 public function region_completely_docked($region, $output) {
602 // If theme doesn't allow docking or allowblockstodock is not set, then return.
603 if (!$this->page
->theme
->enable_dock ||
empty($CFG->allowblockstodock
)) {
607 // Do not dock the region when the user attemps to move a block.
608 if ($this->movingblock
) {
612 // Block regions should not be docked during editing when all the blocks are hidden.
613 if ($this->page
->user_is_editing() && $this->page
->user_can_edit_blocks()) {
617 $this->check_is_loaded();
618 $this->ensure_content_created($region, $output);
619 if (!$this->region_has_content($region, $output)) {
620 // If the region has no content then nothing is docked at all of course.
623 foreach ($this->visibleblockcontent
[$region] as $instance) {
624 if (!get_user_preferences('docked_block_instance_'.$instance->blockinstanceid
, 0)) {
632 * Checks to see whether any of the blocks within the given regions are docked
634 * @see region_completely_docked
635 * @param array|string $regions array of regions (or single region)
636 * @return bool True if any of the blocks within that region are docked
638 public function region_uses_dock($regions, $output) {
639 if (!$this->page
->theme
->enable_dock
) {
642 $this->check_is_loaded();
643 foreach((array)$regions as $region) {
644 $this->ensure_content_created($region, $output);
645 foreach($this->visibleblockcontent
[$region] as $instance) {
646 if(!empty($instance->content
) && get_user_preferences('docked_block_instance_'.$instance->blockinstanceid
, 0)) {
654 /// Actions ====================================================================
657 * This method actually loads the blocks for our page from the database.
659 * @param boolean|null $includeinvisible
660 * null (default) - load hidden blocks if $this->page->user_is_editing();
661 * true - load hidden blocks.
662 * false - don't load hidden blocks.
664 public function load_blocks($includeinvisible = null) {
667 if (!is_null($this->birecordsbyregion
)) {
672 if ($CFG->version
< 2009050619) {
673 // Upgrade/install not complete. Don't try too show any blocks.
674 $this->birecordsbyregion
= array();
678 // Ensure we have been initialised.
679 if (is_null($this->defaultregion
)) {
680 $this->page
->initialise_theme_and_output();
681 // If there are still no block regions, then there are no blocks on this page.
682 if (empty($this->regions
)) {
683 $this->birecordsbyregion
= array();
688 // Check if we need to load normal blocks
689 if ($this->fakeblocksonly
) {
690 $this->birecordsbyregion
= $this->prepare_per_region_arrays();
694 // Exclude auto created blocks if they are not undeletable in this theme.
695 $requiredbytheme = $this->get_required_by_theme_block_types();
696 $requiredbythemecheck = '';
697 $requiredbythemeparams = array();
698 $requiredbythemenotparams = array();
699 if (!empty($requiredbytheme)) {
700 list($testsql, $requiredbythemeparams) = $DB->get_in_or_equal($requiredbytheme, SQL_PARAMS_NAMED
, 'requiredbytheme');
701 list($testnotsql, $requiredbythemenotparams) = $DB->get_in_or_equal($requiredbytheme, SQL_PARAMS_NAMED
,
702 'notrequiredbytheme', false);
703 $requiredbythemecheck = 'AND ((bi.blockname ' . $testsql . ' AND bi.requiredbytheme = 1) OR ' .
704 ' (bi.blockname ' . $testnotsql . ' AND bi.requiredbytheme = 0))';
706 $requiredbythemecheck = 'AND (bi.requiredbytheme = 0)';
709 if (is_null($includeinvisible)) {
710 $includeinvisible = $this->page
->user_is_editing();
712 if ($includeinvisible) {
715 $visiblecheck = 'AND (bp.visible = 1 OR bp.visible IS NULL) AND (bs.visible = 1 OR bs.visible IS NULL)';
718 $context = $this->page
->context
;
719 $contexttest = 'bi.parentcontextid IN (:contextid2, :contextid3)';
720 $parentcontextparams = array();
721 $parentcontextids = $context->get_parent_context_ids();
722 if ($parentcontextids) {
723 list($parentcontexttest, $parentcontextparams) =
724 $DB->get_in_or_equal($parentcontextids, SQL_PARAMS_NAMED
, 'parentcontext');
725 $contexttest = "($contexttest OR (bi.showinsubcontexts = 1 AND bi.parentcontextid $parentcontexttest))";
728 $pagetypepatterns = matching_page_type_patterns($this->page
->pagetype
);
729 list($pagetypepatterntest, $pagetypepatternparams) =
730 $DB->get_in_or_equal($pagetypepatterns, SQL_PARAMS_NAMED
, 'pagetypepatterntest');
732 $ccselect = ', ' . context_helper
::get_preload_record_columns_sql('ctx');
733 $ccjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = bi.id AND ctx.contextlevel = :contextlevel)";
735 $systemcontext = context_system
::instance();
737 'contextlevel' => CONTEXT_BLOCK
,
738 'subpage1' => $this->page
->subpage
,
739 'subpage2' => $this->page
->subpage
,
740 'subpage3' => $this->page
->subpage
,
741 'contextid1' => $context->id
,
742 'contextid2' => $context->id
,
743 'contextid3' => $systemcontext->id
,
744 'contextid4' => $systemcontext->id
,
745 'pagetype' => $this->page
->pagetype
,
746 'pagetype2' => $this->page
->pagetype
,
748 if ($this->page
->subpage
=== '') {
749 $params['subpage1'] = '';
750 $params['subpage2'] = '';
751 $params['subpage3'] = '';
755 COALESCE(bp.id, bs.id) AS blockpositionid,
758 bi.showinsubcontexts,
764 COALESCE(bp.visible, bs.visible, 1) AS visible,
765 COALESCE(bp.region, bs.region, bi.defaultregion) AS region,
766 COALESCE(bp.weight, bs.weight, bi.defaultweight) AS weight,
770 FROM {block_instances} bi
771 JOIN {block} b ON bi.blockname = b.name
772 LEFT JOIN {block_positions} bp ON bp.blockinstanceid = bi.id
773 AND bp.contextid = :contextid1
774 AND bp.pagetype = :pagetype
775 AND bp.subpage = :subpage1
776 LEFT JOIN {block_positions} bs ON bs.blockinstanceid = bi.id
777 AND bs.contextid = :contextid4
778 AND bs.pagetype = :pagetype2
779 AND bs.subpage = :subpage3
784 AND bi.pagetypepattern $pagetypepatterntest
785 AND (bi.subpagepattern IS NULL OR bi.subpagepattern = :subpage2)
788 $requiredbythemecheck
791 COALESCE(bp.region, bs.region, bi.defaultregion),
792 COALESCE(bp.weight, bs.weight, bi.defaultweight),
795 $allparams = $params +
$parentcontextparams +
$pagetypepatternparams +
$requiredbythemeparams +
$requiredbythemenotparams;
796 $blockinstances = $DB->get_recordset_sql($sql, $allparams);
798 $this->birecordsbyregion
= $this->prepare_per_region_arrays();
800 foreach ($blockinstances as $bi) {
801 context_helper
::preload_from_record($bi);
802 if ($this->is_known_region($bi->region
)) {
803 $this->birecordsbyregion
[$bi->region
][] = $bi;
808 $blockinstances->close();
810 // Pages don't necessarily have a defaultregion. The one time this can
811 // happen is when there are no theme block regions, but the script itself
812 // has a block region in the main content area.
813 if (!empty($this->defaultregion
)) {
814 $this->birecordsbyregion
[$this->defaultregion
] =
815 array_merge($this->birecordsbyregion
[$this->defaultregion
], $unknown);
820 * Add a block to the current page, or related pages. The block is added to
821 * context $this->page->contextid. If $pagetypepattern $subpagepattern
823 * @param string $blockname The type of block to add.
824 * @param string $region the block region on this page to add the block to.
825 * @param integer $weight determines the order where this block appears in the region.
826 * @param boolean $showinsubcontexts whether this block appears in subcontexts, or just the current context.
827 * @param string|null $pagetypepattern which page types this block should appear on. Defaults to just the current page type.
828 * @param string|null $subpagepattern which subpage this block should appear on. NULL = any (the default), otherwise only the specified subpage.
830 public function add_block($blockname, $region, $weight, $showinsubcontexts, $pagetypepattern = NULL, $subpagepattern = NULL) {
832 // Allow invisible blocks because this is used when adding default page blocks, which
833 // might include invisible ones if the user makes some default blocks invisible
834 $this->check_known_block_type($blockname, true);
835 $this->check_region_is_known($region);
837 if (empty($pagetypepattern)) {
838 $pagetypepattern = $this->page
->pagetype
;
841 $blockinstance = new stdClass
;
842 $blockinstance->blockname
= $blockname;
843 $blockinstance->parentcontextid
= $this->page
->context
->id
;
844 $blockinstance->showinsubcontexts
= !empty($showinsubcontexts);
845 $blockinstance->pagetypepattern
= $pagetypepattern;
846 $blockinstance->subpagepattern
= $subpagepattern;
847 $blockinstance->defaultregion
= $region;
848 $blockinstance->defaultweight
= $weight;
849 $blockinstance->configdata
= '';
850 $blockinstance->timecreated
= time();
851 $blockinstance->timemodified
= $blockinstance->timecreated
;
852 $blockinstance->id
= $DB->insert_record('block_instances', $blockinstance);
854 // Ensure the block context is created.
855 context_block
::instance($blockinstance->id
);
857 // If the new instance was created, allow it to do additional setup
858 if ($block = block_instance($blockname, $blockinstance)) {
859 $block->instance_create();
863 public function add_block_at_end_of_default_region($blockname) {
864 if (empty($this->birecordsbyregion
)) {
865 // No blocks or block regions exist yet.
868 $defaulregion = $this->get_default_region();
870 $lastcurrentblock = end($this->birecordsbyregion
[$defaulregion]);
871 if ($lastcurrentblock) {
872 $weight = $lastcurrentblock->weight +
1;
877 if ($this->page
->subpage
) {
878 $subpage = $this->page
->subpage
;
883 // Special case. Course view page type include the course format, but we
884 // want to add the block non-format-specifically.
885 $pagetypepattern = $this->page
->pagetype
;
886 if (strpos($pagetypepattern, 'course-view') === 0) {
887 $pagetypepattern = 'course-view-*';
890 // We should end using this for ALL the blocks, making always the 1st option
891 // the default one to be used. Until then, this is one hack to avoid the
892 // 'pagetypewarning' message on blocks initial edition (MDL-27829) caused by
893 // non-existing $pagetypepattern set. This way at least we guarantee one "valid"
894 // (the FIRST $pagetypepattern will be set)
896 // We are applying it to all blocks created in mod pages for now and only if the
897 // default pagetype is not one of the available options
898 if (preg_match('/^mod-.*-/', $pagetypepattern)) {
899 $pagetypelist = generate_page_type_patterns($this->page
->pagetype
, null, $this->page
->context
);
900 // Only go for the first if the pagetype is not a valid option
901 if (is_array($pagetypelist) && !array_key_exists($pagetypepattern, $pagetypelist)) {
902 $pagetypepattern = key($pagetypelist);
905 // Surely other pages like course-report will need this too, they just are not important
906 // enough now. This will be decided in the coming days. (MDL-27829, MDL-28150)
908 $this->add_block($blockname, $defaulregion, $weight, false, $pagetypepattern, $subpage);
912 * Convenience method, calls add_block repeatedly for all the blocks in $blocks. Optionally, a starting weight
913 * can be used to decide the starting point that blocks are added in the region, the weight is passed to {@link add_block}
914 * and incremented by the position of the block in the $blocks array
916 * @param array $blocks array with array keys the region names, and values an array of block names.
917 * @param string $pagetypepattern optional. Passed to {@link add_block()}
918 * @param string $subpagepattern optional. Passed to {@link add_block()}
919 * @param boolean $showinsubcontexts optional. Passed to {@link add_block()}
920 * @param integer $weight optional. Determines the starting point that the blocks are added in the region.
922 public function add_blocks($blocks, $pagetypepattern = NULL, $subpagepattern = NULL, $showinsubcontexts=false, $weight=0) {
923 $initialweight = $weight;
924 $this->add_regions(array_keys($blocks), false);
925 foreach ($blocks as $region => $regionblocks) {
926 foreach ($regionblocks as $offset => $blockname) {
927 $weight = $initialweight +
$offset;
928 $this->add_block($blockname, $region, $weight, $showinsubcontexts, $pagetypepattern, $subpagepattern);
934 * Move a block to a new position on this page.
936 * If this block cannot appear on any other pages, then we change defaultposition/weight
937 * in the block_instances table. Otherwise we just set the position on this page.
939 * @param $blockinstanceid the block instance id.
940 * @param $newregion the new region name.
941 * @param $newweight the new weight.
943 public function reposition_block($blockinstanceid, $newregion, $newweight) {
946 $this->check_region_is_known($newregion);
947 $inst = $this->find_instance($blockinstanceid);
949 $bi = $inst->instance
;
950 if ($bi->weight
== $bi->defaultweight
&& $bi->region
== $bi->defaultregion
&&
951 !$bi->showinsubcontexts
&& strpos($bi->pagetypepattern
, '*') === false &&
952 (!$this->page
->subpage ||
$bi->subpagepattern
)) {
954 // Set default position
955 $newbi = new stdClass
;
956 $newbi->id
= $bi->id
;
957 $newbi->defaultregion
= $newregion;
958 $newbi->defaultweight
= $newweight;
959 $newbi->timemodified
= time();
960 $DB->update_record('block_instances', $newbi);
962 if ($bi->blockpositionid
) {
964 $bp->id
= $bi->blockpositionid
;
965 $bp->region
= $newregion;
966 $bp->weight
= $newweight;
967 $DB->update_record('block_positions', $bp);
971 // Just set position on this page.
973 $bp->region
= $newregion;
974 $bp->weight
= $newweight;
976 if ($bi->blockpositionid
) {
977 $bp->id
= $bi->blockpositionid
;
978 $DB->update_record('block_positions', $bp);
981 $bp->blockinstanceid
= $bi->id
;
982 $bp->contextid
= $this->page
->context
->id
;
983 $bp->pagetype
= $this->page
->pagetype
;
984 if ($this->page
->subpage
) {
985 $bp->subpage
= $this->page
->subpage
;
989 $bp->visible
= $bi->visible
;
990 $DB->insert_record('block_positions', $bp);
996 * Find a given block by its instance id
998 * @param integer $instanceid
1001 public function find_instance($instanceid) {
1002 foreach ($this->regions
as $region => $notused) {
1003 $this->ensure_instances_exist($region);
1004 foreach($this->blockinstances
[$region] as $instance) {
1005 if ($instance->instance
->id
== $instanceid) {
1010 throw new block_not_on_page_exception($instanceid, $this->page
);
1013 /// Inner workings =============================================================
1016 * Check whether the page blocks have been loaded yet
1018 * @return void Throws coding exception if already loaded
1020 protected function check_not_yet_loaded() {
1021 if (!is_null($this->birecordsbyregion
)) {
1022 throw new coding_exception('block_manager has already loaded the blocks, to it is too late to change things that might affect which blocks are visible.');
1027 * Check whether the page blocks have been loaded yet
1029 * Nearly identical to the above function {@link check_not_yet_loaded()} except different message
1031 * @return void Throws coding exception if already loaded
1033 protected function check_is_loaded() {
1034 if (is_null($this->birecordsbyregion
)) {
1035 throw new coding_exception('block_manager has not yet loaded the blocks, to it is too soon to request the information you asked for.');
1040 * Check if a block type is known and usable
1042 * @param string $blockname The block type name to search for
1043 * @param bool $includeinvisible Include disabled block types in the initial pass
1044 * @return void Coding Exception thrown if unknown or not enabled
1046 protected function check_known_block_type($blockname, $includeinvisible = false) {
1047 if (!$this->is_known_block_type($blockname, $includeinvisible)) {
1048 if ($this->is_known_block_type($blockname, true)) {
1049 throw new coding_exception('Unknown block type ' . $blockname);
1051 throw new coding_exception('Block type ' . $blockname . ' has been disabled by the administrator.');
1057 * Check if a region is known by its name
1059 * @param string $region
1060 * @return void Coding Exception thrown if the region is not known
1062 protected function check_region_is_known($region) {
1063 if (!$this->is_known_region($region)) {
1064 throw new coding_exception('Trying to reference an unknown block region ' . $region);
1069 * Returns an array of region names as keys and nested arrays for values
1071 * @return array an array where the array keys are the region names, and the array
1072 * values are empty arrays.
1074 protected function prepare_per_region_arrays() {
1076 foreach ($this->regions
as $region => $notused) {
1077 $result[$region] = array();
1083 * Create a set of new block instance from a record array
1085 * @param array $birecords An array of block instance records
1086 * @return array An array of instantiated block_instance objects
1088 protected function create_block_instances($birecords) {
1090 foreach ($birecords as $record) {
1091 if ($blockobject = block_instance($record->blockname
, $record, $this->page
)) {
1092 $results[] = $blockobject;
1099 * Create all the block instances for all the blocks that were loaded by
1100 * load_blocks. This is used, for example, to ensure that all blocks get a
1101 * chance to initialise themselves via the {@link block_base::specialize()}
1102 * method, before any output is done.
1104 * It is also used to create any blocks that are "requiredbytheme" by the current theme.
1105 * These blocks that are auto-created have requiredbytheme set on the block instance
1106 * so they are only visible on themes that require them.
1108 public function create_all_block_instances() {
1111 // If there are any un-removable blocks that were not created - force them.
1112 $requiredbytheme = $this->get_required_by_theme_block_types();
1113 if (!$this->fakeblocksonly
) {
1114 foreach ($requiredbytheme as $forced) {
1115 if (empty($forced)) {
1119 foreach ($this->get_regions() as $region) {
1120 foreach($this->birecordsbyregion
[$region] as $instance) {
1121 if ($instance->blockname
== $forced) {
1127 $this->add_block_required_by_theme($forced);
1134 // Some blocks were missing. Lets do it again.
1135 $this->birecordsbyregion
= null;
1136 $this->load_blocks();
1138 foreach ($this->get_regions() as $region) {
1139 $this->ensure_instances_exist($region);
1145 * Add a block that is required by the current theme but has not been
1146 * created yet. This is a special type of block that only shows in themes that
1147 * require it (by listing it in undeletable_block_types).
1149 * @param string $blockname the name of the block type.
1151 protected function add_block_required_by_theme($blockname) {
1154 if (empty($this->birecordsbyregion
)) {
1155 // No blocks or block regions exist yet.
1159 // Never auto create blocks when we are showing fake blocks only.
1160 if ($this->fakeblocksonly
) {
1164 // Never add a duplicate block required by theme.
1165 if ($DB->record_exists('block_instances', array('blockname' => $blockname, 'requiredbytheme' => 1))) {
1169 $systemcontext = context_system
::instance();
1170 $defaultregion = $this->get_default_region();
1171 // Add a special system wide block instance only for themes that require it.
1172 $blockinstance = new stdClass
;
1173 $blockinstance->blockname
= $blockname;
1174 $blockinstance->parentcontextid
= $systemcontext->id
;
1175 $blockinstance->showinsubcontexts
= true;
1176 $blockinstance->requiredbytheme
= true;
1177 $blockinstance->pagetypepattern
= '*';
1178 $blockinstance->subpagepattern
= null;
1179 $blockinstance->defaultregion
= $defaultregion;
1180 $blockinstance->defaultweight
= 0;
1181 $blockinstance->configdata
= '';
1182 $blockinstance->timecreated
= time();
1183 $blockinstance->timemodified
= $blockinstance->timecreated
;
1184 $blockinstance->id
= $DB->insert_record('block_instances', $blockinstance);
1186 // Ensure the block context is created.
1187 context_block
::instance($blockinstance->id
);
1189 // If the new instance was created, allow it to do additional setup.
1190 if ($block = block_instance($blockname, $blockinstance)) {
1191 $block->instance_create();
1196 * Return an array of content objects from a set of block instances
1198 * @param array $instances An array of block instances
1199 * @param renderer_base The renderer to use.
1200 * @param string $region the region name.
1201 * @return array An array of block_content (and possibly block_move_target) objects.
1203 protected function create_block_contents($instances, $output, $region) {
1208 if ($this->movingblock
) {
1209 $first = reset($instances);
1211 $lastweight = $first->instance
->weight
- 2;
1215 foreach ($instances as $instance) {
1216 $content = $instance->get_content_for_output($output);
1217 if (empty($content)) {
1221 if ($this->movingblock
&& $lastweight != $instance->instance
->weight
&&
1222 $content->blockinstanceid
!= $this->movingblock
&& $lastblock != $this->movingblock
) {
1223 $results[] = new block_move_target($this->get_move_target_url($region, ($lastweight +
$instance->instance
->weight
)/2));
1226 if ($content->blockinstanceid
== $this->movingblock
) {
1227 $content->add_class('beingmoved');
1228 $content->annotation
.= get_string('movingthisblockcancel', 'block',
1229 html_writer
::link($this->page
->url
, get_string('cancel')));
1232 $results[] = $content;
1233 $lastweight = $instance->instance
->weight
;
1234 $lastblock = $instance->instance
->id
;
1237 if ($this->movingblock
&& $lastblock != $this->movingblock
) {
1238 $results[] = new block_move_target($this->get_move_target_url($region, $lastweight +
1));
1244 * Ensure block instances exist for a given region
1246 * @param string $region Check for bi's with the instance with this name
1248 protected function ensure_instances_exist($region) {
1249 $this->check_region_is_known($region);
1250 if (!array_key_exists($region, $this->blockinstances
)) {
1251 $this->blockinstances
[$region] =
1252 $this->create_block_instances($this->birecordsbyregion
[$region]);
1257 * Ensure that there is some content within the given region
1259 * @param string $region The name of the region to check
1261 public function ensure_content_created($region, $output) {
1262 $this->ensure_instances_exist($region);
1263 if (!array_key_exists($region, $this->visibleblockcontent
)) {
1264 $contents = array();
1265 if (array_key_exists($region, $this->extracontent
)) {
1266 $contents = $this->extracontent
[$region];
1268 $contents = array_merge($contents, $this->create_block_contents($this->blockinstances
[$region], $output, $region));
1269 if (($region == $this->defaultregion
) && (!isset($this->page
->theme
->addblockposition
) ||
1270 $this->page
->theme
->addblockposition
== BLOCK_ADDBLOCK_POSITION_DEFAULT
)) {
1271 $addblockui = block_add_block_ui($this->page
, $output);
1273 $contents[] = $addblockui;
1276 $this->visibleblockcontent
[$region] = $contents;
1280 /// Process actions from the URL ===============================================
1283 * Get the appropriate list of editing icons for a block. This is used
1284 * to set {@link block_contents::$controls} in {@link block_base::get_contents_for_output()}.
1286 * @param $output The core_renderer to use when generating the output. (Need to get icon paths.)
1287 * @return an array in the format for {@link block_contents::$controls}
1289 public function edit_controls($block) {
1292 $controls = array();
1293 $actionurl = $this->page
->url
->out(false, array('sesskey'=> sesskey()));
1294 $blocktitle = $block->title
;
1295 if (empty($blocktitle)) {
1296 $blocktitle = $block->arialabel
;
1299 if ($this->page
->user_can_edit_blocks()) {
1301 $str = new lang_string('moveblock', 'block', $blocktitle);
1302 $controls[] = new action_menu_link_primary(
1303 new moodle_url($actionurl, array('bui_moveid' => $block->instance
->id
)),
1304 new pix_icon('t/move', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1306 array('class' => 'editing_move')
1311 if ($this->page
->user_can_edit_blocks() ||
$block->user_can_edit()) {
1312 // Edit config icon - always show - needed for positioning UI.
1313 $str = new lang_string('configureblock', 'block', $blocktitle);
1314 $controls[] = new action_menu_link_secondary(
1315 new moodle_url($actionurl, array('bui_editid' => $block->instance
->id
)),
1316 new pix_icon('t/edit', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1318 array('class' => 'editing_edit')
1323 if ($this->page
->user_can_edit_blocks() && $block->instance_can_be_hidden()) {
1325 if ($block->instance
->visible
) {
1326 $str = new lang_string('hideblock', 'block', $blocktitle);
1327 $url = new moodle_url($actionurl, array('bui_hideid' => $block->instance
->id
));
1328 $icon = new pix_icon('t/hide', $str, 'moodle', array('class' => 'iconsmall', 'title' => ''));
1329 $attributes = array('class' => 'editing_hide');
1331 $str = new lang_string('showblock', 'block', $blocktitle);
1332 $url = new moodle_url($actionurl, array('bui_showid' => $block->instance
->id
));
1333 $icon = new pix_icon('t/show', $str, 'moodle', array('class' => 'iconsmall', 'title' => ''));
1334 $attributes = array('class' => 'editing_show');
1336 $controls[] = new action_menu_link_secondary($url, $icon, $str, $attributes);
1340 if (get_assignable_roles($block->context
, ROLENAME_SHORT
)) {
1341 $rolesurl = new moodle_url('/admin/roles/assign.php', array('contextid' => $block->context
->id
,
1342 'returnurl' => $this->page
->url
->out_as_local_url()));
1343 $str = new lang_string('assignrolesinblock', 'block', $blocktitle);
1344 $controls[] = new action_menu_link_secondary(
1346 new pix_icon('i/assignroles', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1347 $str, array('class' => 'editing_assignroles')
1352 if (has_capability('moodle/role:review', $block->context
) or get_overridable_roles($block->context
)) {
1353 $rolesurl = new moodle_url('/admin/roles/permissions.php', array('contextid' => $block->context
->id
,
1354 'returnurl' => $this->page
->url
->out_as_local_url()));
1355 $str = get_string('permissions', 'role');
1356 $controls[] = new action_menu_link_secondary(
1358 new pix_icon('i/permissions', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1359 $str, array('class' => 'editing_permissions')
1363 // Change permissions.
1364 if (has_any_capability(array('moodle/role:safeoverride', 'moodle/role:override', 'moodle/role:assign'), $block->context
)) {
1365 $rolesurl = new moodle_url('/admin/roles/check.php', array('contextid' => $block->context
->id
,
1366 'returnurl' => $this->page
->url
->out_as_local_url()));
1367 $str = get_string('checkpermissions', 'role');
1368 $controls[] = new action_menu_link_secondary(
1370 new pix_icon('i/checkpermissions', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1371 $str, array('class' => 'editing_checkroles')
1375 if ($this->user_can_delete_block($block)) {
1377 $str = new lang_string('deleteblock', 'block', $blocktitle);
1378 $controls[] = new action_menu_link_secondary(
1379 new moodle_url($actionurl, array('bui_deleteid' => $block->instance
->id
)),
1380 new pix_icon('t/delete', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1382 array('class' => 'editing_delete')
1386 if (!empty($CFG->contextlocking
) && has_capability('moodle/site:managecontextlocks', $block->context
)) {
1387 $parentcontext = $block->context
->get_parent_context();
1388 if (empty($parentcontext) ||
empty($parentcontext->locked
)) {
1389 if ($block->context
->locked
) {
1390 $lockicon = 'i/unlock';
1391 $lockstring = get_string('managecontextunlock', 'admin');
1393 $lockicon = 'i/lock';
1394 $lockstring = get_string('managecontextlock', 'admin');
1396 $controls[] = new action_menu_link_secondary(
1400 'id' => $block->context
->id
,
1403 new pix_icon($lockicon, $lockstring, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1405 ['class' => 'editing_lock']
1414 * @param block_base $block a block that appears on this page.
1415 * @return boolean boolean whether the currently logged in user is allowed to delete this block.
1417 protected function user_can_delete_block($block) {
1418 return $this->page
->user_can_edit_blocks() && $block->user_can_edit() &&
1419 $block->user_can_addto($this->page
) &&
1420 !in_array($block->instance
->blockname
, self
::get_undeletable_block_types()) &&
1421 !in_array($block->instance
->blockname
, $this->get_required_by_theme_block_types());
1425 * Process any block actions that were specified in the URL.
1427 * @return boolean true if anything was done. False if not.
1429 public function process_url_actions() {
1430 if (!$this->page
->user_is_editing()) {
1433 return $this->process_url_add() ||
$this->process_url_delete() ||
1434 $this->process_url_show_hide() ||
$this->process_url_edit() ||
1435 $this->process_url_move();
1439 * Handle adding a block.
1440 * @return boolean true if anything was done. False if not.
1442 public function process_url_add() {
1443 global $CFG, $PAGE, $OUTPUT;
1445 $blocktype = optional_param('bui_addblock', null, PARAM_PLUGIN
);
1446 if ($blocktype === null) {
1452 if (!$this->page
->user_can_edit_blocks()) {
1453 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('addblock'));
1456 $addableblocks = $this->get_addable_blocks();
1458 if ($blocktype === '') {
1459 // Display add block selection.
1460 $addpage = new moodle_page();
1461 $addpage->set_pagelayout('admin');
1462 $addpage->blocks
->show_only_fake_blocks(true);
1463 $addpage->set_course($this->page
->course
);
1464 $addpage->set_context($this->page
->context
);
1465 if ($this->page
->cm
) {
1466 $addpage->set_cm($this->page
->cm
);
1469 $addpagebase = str_replace($CFG->wwwroot
. '/', '/', $this->page
->url
->out_omit_querystring());
1470 $addpageparams = $this->page
->url
->params();
1471 $addpage->set_url($addpagebase, $addpageparams);
1472 $addpage->set_block_actions_done();
1473 // At this point we are going to display the block selector, overwrite global $PAGE ready for this.
1475 // Some functions use $OUTPUT so we need to replace that too.
1476 $OUTPUT = $addpage->get_renderer('core');
1479 $straddblock = get_string('addblock');
1481 $PAGE->navbar
->add($straddblock);
1482 $PAGE->set_title($straddblock);
1483 $PAGE->set_heading($site->fullname
);
1484 echo $OUTPUT->header();
1485 echo $OUTPUT->heading($straddblock);
1487 if (!$addableblocks) {
1488 echo $OUTPUT->box(get_string('noblockstoaddhere'));
1489 echo $OUTPUT->container($OUTPUT->action_link($addpage->url
, get_string('back')), 'm-x-3 m-b-1');
1491 $url = new moodle_url($addpage->url
, array('sesskey' => sesskey()));
1492 echo $OUTPUT->render_from_template('core/add_block_body',
1493 ['blocks' => array_values($addableblocks),
1494 'url' => '?' . $url->get_query_string(false)]);
1495 echo $OUTPUT->container($OUTPUT->action_link($addpage->url
, get_string('cancel')), 'm-x-3 m-b-1');
1498 echo $OUTPUT->footer();
1499 // Make sure that nothing else happens after we have displayed this form.
1503 if (!array_key_exists($blocktype, $addableblocks)) {
1504 throw new moodle_exception('cannotaddthisblocktype', '', $this->page
->url
->out(), $blocktype);
1507 $this->add_block_at_end_of_default_region($blocktype);
1509 // If the page URL was a guess, it will contain the bui_... param, so we must make sure it is not there.
1510 $this->page
->ensure_param_not_in_url('bui_addblock');
1516 * Handle deleting a block.
1517 * @return boolean true if anything was done. False if not.
1519 public function process_url_delete() {
1520 global $CFG, $PAGE, $OUTPUT;
1522 $blockid = optional_param('bui_deleteid', null, PARAM_INT
);
1523 $confirmdelete = optional_param('bui_confirm', null, PARAM_INT
);
1530 $block = $this->page
->blocks
->find_instance($blockid);
1531 if (!$this->user_can_delete_block($block)) {
1532 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('deleteablock'));
1535 if (!$confirmdelete) {
1536 $deletepage = new moodle_page();
1537 $deletepage->set_pagelayout('admin');
1538 $deletepage->blocks
->show_only_fake_blocks(true);
1539 $deletepage->set_course($this->page
->course
);
1540 $deletepage->set_context($this->page
->context
);
1541 if ($this->page
->cm
) {
1542 $deletepage->set_cm($this->page
->cm
);
1545 $deleteurlbase = str_replace($CFG->wwwroot
. '/', '/', $this->page
->url
->out_omit_querystring());
1546 $deleteurlparams = $this->page
->url
->params();
1547 $deletepage->set_url($deleteurlbase, $deleteurlparams);
1548 $deletepage->set_block_actions_done();
1549 // At this point we are either going to redirect, or display the form, so
1550 // overwrite global $PAGE ready for this. (Formslib refers to it.)
1551 $PAGE = $deletepage;
1552 //some functions like MoodleQuickForm::addHelpButton use $OUTPUT so we need to replace that too
1553 $output = $deletepage->get_renderer('core');
1557 $blocktitle = $block->get_title();
1558 $strdeletecheck = get_string('deletecheck', 'block', $blocktitle);
1559 $message = get_string('deleteblockcheck', 'block', $blocktitle);
1561 // If the block is being shown in sub contexts display a warning.
1562 if ($block->instance
->showinsubcontexts
== 1) {
1563 $parentcontext = context
::instance_by_id($block->instance
->parentcontextid
);
1564 $systemcontext = context_system
::instance();
1565 $messagestring = new stdClass();
1566 $messagestring->location
= $parentcontext->get_context_name();
1568 // Checking for blocks that may have visibility on the front page and pages added on that.
1569 if ($parentcontext->id
!= $systemcontext->id
&& is_inside_frontpage($parentcontext)) {
1570 $messagestring->pagetype
= get_string('showonfrontpageandsubs', 'block');
1572 $pagetypes = generate_page_type_patterns($this->page
->pagetype
, $parentcontext);
1573 $messagestring->pagetype
= $block->instance
->pagetypepattern
;
1574 if (isset($pagetypes[$block->instance
->pagetypepattern
])) {
1575 $messagestring->pagetype
= $pagetypes[$block->instance
->pagetypepattern
];
1579 $message = get_string('deleteblockwarning', 'block', $messagestring);
1582 $PAGE->navbar
->add($strdeletecheck);
1583 $PAGE->set_title($blocktitle . ': ' . $strdeletecheck);
1584 $PAGE->set_heading($site->fullname
);
1585 echo $OUTPUT->header();
1586 $confirmurl = new moodle_url($deletepage->url
, array('sesskey' => sesskey(), 'bui_deleteid' => $block->instance
->id
, 'bui_confirm' => 1));
1587 $cancelurl = new moodle_url($deletepage->url
);
1588 $yesbutton = new single_button($confirmurl, get_string('yes'));
1589 $nobutton = new single_button($cancelurl, get_string('no'));
1590 echo $OUTPUT->confirm($message, $yesbutton, $nobutton);
1591 echo $OUTPUT->footer();
1592 // Make sure that nothing else happens after we have displayed this form.
1595 blocks_delete_instance($block->instance
);
1596 // bui_deleteid and bui_confirm should not be in the PAGE url.
1597 $this->page
->ensure_param_not_in_url('bui_deleteid');
1598 $this->page
->ensure_param_not_in_url('bui_confirm');
1604 * Handle showing or hiding a block.
1605 * @return boolean true if anything was done. False if not.
1607 public function process_url_show_hide() {
1608 if ($blockid = optional_param('bui_hideid', null, PARAM_INT
)) {
1610 } else if ($blockid = optional_param('bui_showid', null, PARAM_INT
)) {
1618 $block = $this->page
->blocks
->find_instance($blockid);
1620 if (!$this->page
->user_can_edit_blocks()) {
1621 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('hideshowblocks'));
1622 } else if (!$block->instance_can_be_hidden()) {
1626 blocks_set_visibility($block->instance
, $this->page
, $newvisibility);
1628 // If the page URL was a guses, it will contain the bui_... param, so we must make sure it is not there.
1629 $this->page
->ensure_param_not_in_url('bui_hideid');
1630 $this->page
->ensure_param_not_in_url('bui_showid');
1636 * Handle showing/processing the submission from the block editing form.
1637 * @return boolean true if the form was submitted and the new config saved. Does not
1638 * return if the editing form was displayed. False otherwise.
1640 public function process_url_edit() {
1641 global $CFG, $DB, $PAGE, $OUTPUT;
1643 $blockid = optional_param('bui_editid', null, PARAM_INT
);
1649 require_once($CFG->dirroot
. '/blocks/edit_form.php');
1651 $block = $this->find_instance($blockid);
1653 if (!$block->user_can_edit() && !$this->page
->user_can_edit_blocks()) {
1654 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('editblock'));
1657 $editpage = new moodle_page();
1658 $editpage->set_pagelayout('admin');
1659 $editpage->blocks
->show_only_fake_blocks(true);
1660 $editpage->set_course($this->page
->course
);
1661 //$editpage->set_context($block->context);
1662 $editpage->set_context($this->page
->context
);
1663 if ($this->page
->cm
) {
1664 $editpage->set_cm($this->page
->cm
);
1666 $editurlbase = str_replace($CFG->wwwroot
. '/', '/', $this->page
->url
->out_omit_querystring());
1667 $editurlparams = $this->page
->url
->params();
1668 $editurlparams['bui_editid'] = $blockid;
1669 $editpage->set_url($editurlbase, $editurlparams);
1670 $editpage->set_block_actions_done();
1671 // At this point we are either going to redirect, or display the form, so
1672 // overwrite global $PAGE ready for this. (Formslib refers to it.)
1674 //some functions like MoodleQuickForm::addHelpButton use $OUTPUT so we need to replace that to
1675 $output = $editpage->get_renderer('core');
1678 $formfile = $CFG->dirroot
. '/blocks/' . $block->name() . '/edit_form.php';
1679 if (is_readable($formfile)) {
1680 require_once($formfile);
1681 $classname = 'block_' . $block->name() . '_edit_form';
1682 if (!class_exists($classname)) {
1683 $classname = 'block_edit_form';
1686 $classname = 'block_edit_form';
1689 $mform = new $classname($editpage->url
, $block, $this->page
);
1690 $mform->set_data($block->instance
);
1692 if ($mform->is_cancelled()) {
1693 redirect($this->page
->url
);
1695 } else if ($data = $mform->get_data()) {
1697 $bi->id
= $block->instance
->id
;
1699 // This may get overwritten by the special case handling below.
1700 $bi->pagetypepattern
= $data->bui_pagetypepattern
;
1701 $bi->showinsubcontexts
= (bool) $data->bui_contexts
;
1702 if (empty($data->bui_subpagepattern
) ||
$data->bui_subpagepattern
== '%@NULL@%') {
1703 $bi->subpagepattern
= null;
1705 $bi->subpagepattern
= $data->bui_subpagepattern
;
1708 $systemcontext = context_system
::instance();
1709 $frontpagecontext = context_course
::instance(SITEID
);
1710 $parentcontext = context
::instance_by_id($data->bui_parentcontextid
);
1712 // Updating stickiness and contexts. See MDL-21375 for details.
1713 if (has_capability('moodle/site:manageblocks', $parentcontext)) { // Check permissions in destination
1715 // Explicitly set the default context
1716 $bi->parentcontextid
= $parentcontext->id
;
1718 if ($data->bui_editingatfrontpage
) { // The block is being edited on the front page
1720 // The interface here is a special case because the pagetype pattern is
1721 // totally derived from the context menu. Here are the excpetions. MDL-30340
1723 switch ($data->bui_contexts
) {
1724 case BUI_CONTEXTS_ENTIRE_SITE
:
1725 // The user wants to show the block across the entire site
1726 $bi->parentcontextid
= $systemcontext->id
;
1727 $bi->showinsubcontexts
= true;
1728 $bi->pagetypepattern
= '*';
1730 case BUI_CONTEXTS_FRONTPAGE_SUBS
:
1731 // The user wants the block shown on the front page and all subcontexts
1732 $bi->parentcontextid
= $frontpagecontext->id
;
1733 $bi->showinsubcontexts
= true;
1734 $bi->pagetypepattern
= '*';
1736 case BUI_CONTEXTS_FRONTPAGE_ONLY
:
1737 // The user want to show the front page on the frontpage only
1738 $bi->parentcontextid
= $frontpagecontext->id
;
1739 $bi->showinsubcontexts
= false;
1740 $bi->pagetypepattern
= 'site-index';
1741 // This is the only relevant page type anyway but we'll set it explicitly just
1742 // in case the front page grows site-index-* subpages of its own later
1748 $bits = explode('-', $bi->pagetypepattern
);
1749 // hacks for some contexts
1750 if (($parentcontext->contextlevel
== CONTEXT_COURSE
) && ($parentcontext->instanceid
!= SITEID
)) {
1751 // For course context
1752 // is page type pattern is mod-*, change showinsubcontext to 1
1753 if ($bits[0] == 'mod' ||
$bi->pagetypepattern
== '*') {
1754 $bi->showinsubcontexts
= 1;
1756 $bi->showinsubcontexts
= 0;
1758 } else if ($parentcontext->contextlevel
== CONTEXT_USER
) {
1760 // subpagepattern should be null
1761 if ($bits[0] == 'user' or $bits[0] == 'my') {
1762 // we don't need subpagepattern in usercontext
1763 $bi->subpagepattern
= null;
1767 $bi->defaultregion
= $data->bui_defaultregion
;
1768 $bi->defaultweight
= $data->bui_defaultweight
;
1769 $bi->timemodified
= time();
1770 $DB->update_record('block_instances', $bi);
1772 if (!empty($block->config
)) {
1773 $config = clone($block->config
);
1775 $config = new stdClass
;
1777 foreach ($data as $configfield => $value) {
1778 if (strpos($configfield, 'config_') !== 0) {
1781 $field = substr($configfield, 7);
1782 $config->$field = $value;
1784 $block->instance_config_save($config);
1787 $bp->visible
= $data->bui_visible
;
1788 $bp->region
= $data->bui_region
;
1789 $bp->weight
= $data->bui_weight
;
1790 $needbprecord = !$data->bui_visible ||
$data->bui_region
!= $data->bui_defaultregion ||
1791 $data->bui_weight
!= $data->bui_defaultweight
;
1793 if ($block->instance
->blockpositionid
&& !$needbprecord) {
1794 $DB->delete_records('block_positions', array('id' => $block->instance
->blockpositionid
));
1796 } else if ($block->instance
->blockpositionid
&& $needbprecord) {
1797 $bp->id
= $block->instance
->blockpositionid
;
1798 $DB->update_record('block_positions', $bp);
1800 } else if ($needbprecord) {
1801 $bp->blockinstanceid
= $block->instance
->id
;
1802 $bp->contextid
= $this->page
->context
->id
;
1803 $bp->pagetype
= $this->page
->pagetype
;
1804 if ($this->page
->subpage
) {
1805 $bp->subpage
= $this->page
->subpage
;
1809 $DB->insert_record('block_positions', $bp);
1812 redirect($this->page
->url
);
1815 $strheading = get_string('blockconfiga', 'moodle', $block->get_title());
1816 $editpage->set_title($strheading);
1817 $editpage->set_heading($strheading);
1818 $bits = explode('-', $this->page
->pagetype
);
1819 if ($bits[0] == 'tag' && !empty($this->page
->subpage
)) {
1820 // better navbar for tag pages
1821 $editpage->navbar
->add(get_string('tags'), new moodle_url('/tag/'));
1822 $tag = core_tag_tag
::get($this->page
->subpage
);
1823 // tag search page doesn't have subpageid
1825 $editpage->navbar
->add($tag->get_display_name(), $tag->get_view_url());
1828 $editpage->navbar
->add($block->get_title());
1829 $editpage->navbar
->add(get_string('configuration'));
1830 echo $output->header();
1831 echo $output->heading($strheading, 2);
1833 echo $output->footer();
1839 * Handle showing/processing the submission from the block editing form.
1840 * @return boolean true if the form was submitted and the new config saved. Does not
1841 * return if the editing form was displayed. False otherwise.
1843 public function process_url_move() {
1844 global $CFG, $DB, $PAGE;
1846 $blockid = optional_param('bui_moveid', null, PARAM_INT
);
1853 $block = $this->find_instance($blockid);
1855 if (!$this->page
->user_can_edit_blocks()) {
1856 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('editblock'));
1859 $newregion = optional_param('bui_newregion', '', PARAM_ALPHANUMEXT
);
1860 $newweight = optional_param('bui_newweight', null, PARAM_FLOAT
);
1861 if (!$newregion ||
is_null($newweight)) {
1862 // Don't have a valid target position yet, must be just starting the move.
1863 $this->movingblock
= $blockid;
1864 $this->page
->ensure_param_not_in_url('bui_moveid');
1868 if (!$this->is_known_region($newregion)) {
1869 throw new moodle_exception('unknownblockregion', '', $this->page
->url
, $newregion);
1872 // Move this block. This may involve moving other nearby blocks.
1873 $blocks = $this->birecordsbyregion
[$newregion];
1875 $maxweight = self
::MAX_WEIGHT
;
1876 $minweight = -self
::MAX_WEIGHT
;
1878 // Initialise the used weights and spareweights array with the default values
1879 $spareweights = array();
1880 $usedweights = array();
1881 for ($i = $minweight; $i <= $maxweight; $i++
) {
1882 $spareweights[$i] = $i;
1883 $usedweights[$i] = array();
1886 // Check each block and sort out where we have used weights
1887 foreach ($blocks as $bi) {
1888 if ($bi->weight
> $maxweight) {
1889 // If this statement is true then the blocks weight is more than the
1890 // current maximum. To ensure that we can get the best block position
1891 // we will initialise elements within the usedweights and spareweights
1892 // arrays between the blocks weight (which will then be the new max) and
1894 $parseweight = $bi->weight
;
1895 while (!array_key_exists($parseweight, $usedweights)) {
1896 $usedweights[$parseweight] = array();
1897 $spareweights[$parseweight] = $parseweight;
1900 $maxweight = $bi->weight
;
1901 } else if ($bi->weight
< $minweight) {
1902 // As above except this time the blocks weight is LESS than the
1903 // the current minimum, so we will initialise the array from the
1904 // blocks weight (new minimum) to the current minimum
1905 $parseweight = $bi->weight
;
1906 while (!array_key_exists($parseweight, $usedweights)) {
1907 $usedweights[$parseweight] = array();
1908 $spareweights[$parseweight] = $parseweight;
1911 $minweight = $bi->weight
;
1913 if ($bi->id
!= $block->instance
->id
) {
1914 unset($spareweights[$bi->weight
]);
1915 $usedweights[$bi->weight
][] = $bi->id
;
1919 // First we find the nearest gap in the list of weights.
1920 $bestdistance = max(abs($newweight - self
::MAX_WEIGHT
), abs($newweight + self
::MAX_WEIGHT
)) +
1;
1922 foreach ($spareweights as $spareweight) {
1923 if (abs($newweight - $spareweight) < $bestdistance) {
1924 $bestdistance = abs($newweight - $spareweight);
1925 $bestgap = $spareweight;
1929 // If there is no gap, we have to go outside -self::MAX_WEIGHT .. self::MAX_WEIGHT.
1930 if (is_null($bestgap)) {
1931 $bestgap = self
::MAX_WEIGHT +
1;
1932 while (!empty($usedweights[$bestgap])) {
1937 // Now we know the gap we are aiming for, so move all the blocks along.
1938 if ($bestgap < $newweight) {
1939 $newweight = floor($newweight);
1940 for ($weight = $bestgap +
1; $weight <= $newweight; $weight++
) {
1941 if (array_key_exists($weight, $usedweights)) {
1942 foreach ($usedweights[$weight] as $biid) {
1943 $this->reposition_block($biid, $newregion, $weight - 1);
1947 $this->reposition_block($block->instance
->id
, $newregion, $newweight);
1949 $newweight = ceil($newweight);
1950 for ($weight = $bestgap - 1; $weight >= $newweight; $weight--) {
1951 if (array_key_exists($weight, $usedweights)) {
1952 foreach ($usedweights[$weight] as $biid) {
1953 $this->reposition_block($biid, $newregion, $weight +
1);
1957 $this->reposition_block($block->instance
->id
, $newregion, $newweight);
1960 $this->page
->ensure_param_not_in_url('bui_moveid');
1961 $this->page
->ensure_param_not_in_url('bui_newregion');
1962 $this->page
->ensure_param_not_in_url('bui_newweight');
1967 * Turns the display of normal blocks either on or off.
1969 * @param bool $setting
1971 public function show_only_fake_blocks($setting = true) {
1972 $this->fakeblocksonly
= $setting;
1976 /// Helper functions for working with block classes ============================
1979 * Call a class method (one that does not require a block instance) on a block class.
1981 * @param string $blockname the name of the block.
1982 * @param string $method the method name.
1983 * @param array $param parameters to pass to the method.
1984 * @return mixed whatever the method returns.
1986 function block_method_result($blockname, $method, $param = NULL) {
1987 if(!block_load_class($blockname)) {
1990 return call_user_func(array('block_'.$blockname, $method), $param);
1994 * Returns a new instance of the specified block instance id.
1996 * @param int $blockinstanceid
1997 * @return block_base the requested block instance.
1999 function block_instance_by_id($blockinstanceid) {
2002 $blockinstance = $DB->get_record('block_instances', ['id' => $blockinstanceid]);
2003 $instance = block_instance($blockinstance->blockname
, $blockinstance);
2008 * Creates a new instance of the specified block class.
2010 * @param string $blockname the name of the block.
2011 * @param $instance block_instances DB table row (optional).
2012 * @param moodle_page $page the page this block is appearing on.
2013 * @return block_base the requested block instance.
2015 function block_instance($blockname, $instance = NULL, $page = NULL) {
2016 if(!block_load_class($blockname)) {
2019 $classname = 'block_'.$blockname;
2020 $retval = new $classname;
2021 if($instance !== NULL) {
2022 if (is_null($page)) {
2026 $retval->_load_instance($instance, $page);
2032 * Load the block class for a particular type of block.
2034 * @param string $blockname the name of the block.
2035 * @return boolean success or failure.
2037 function block_load_class($blockname) {
2040 if(empty($blockname)) {
2044 $classname = 'block_'.$blockname;
2046 if(class_exists($classname)) {
2050 $blockpath = $CFG->dirroot
.'/blocks/'.$blockname.'/block_'.$blockname.'.php';
2052 if (file_exists($blockpath)) {
2053 require_once($CFG->dirroot
.'/blocks/moodleblock.class.php');
2054 include_once($blockpath);
2056 //debugging("$blockname code does not exist in $blockpath", DEBUG_DEVELOPER);
2060 return class_exists($classname);
2064 * Given a specific page type, return all the page type patterns that might
2067 * @param string $pagetype for example 'course-view-weeks' or 'mod-quiz-view'.
2068 * @return array an array of all the page type patterns that might match this page type.
2070 function matching_page_type_patterns($pagetype) {
2071 $patterns = array($pagetype);
2072 $bits = explode('-', $pagetype);
2073 if (count($bits) == 3 && $bits[0] == 'mod') {
2074 if ($bits[2] == 'view') {
2075 $patterns[] = 'mod-*-view';
2076 } else if ($bits[2] == 'index') {
2077 $patterns[] = 'mod-*-index';
2080 while (count($bits) > 0) {
2081 $patterns[] = implode('-', $bits) . '-*';
2089 * Give an specific pattern, return all the page type patterns that would also match it.
2091 * @param string $pattern the pattern, e.g. 'mod-forum-*' or 'mod-quiz-view'.
2092 * @return array of all the page type patterns matching.
2094 function matching_page_type_patterns_from_pattern($pattern) {
2095 $patterns = array($pattern);
2096 if ($pattern === '*') {
2100 // Only keep the part before the star because we will append -* to all the bits.
2101 $star = strpos($pattern, '-*');
2102 if ($star !== false) {
2103 $pattern = substr($pattern, 0, $star);
2106 $patterns = array_merge($patterns, matching_page_type_patterns($pattern));
2107 $patterns = array_unique($patterns);
2113 * Given a specific page type, parent context and currect context, return all the page type patterns
2114 * that might be used by this block.
2116 * @param string $pagetype for example 'course-view-weeks' or 'mod-quiz-view'.
2117 * @param stdClass $parentcontext Block's parent context
2118 * @param stdClass $currentcontext Current context of block
2119 * @return array an array of all the page type patterns that might match this page type.
2121 function generate_page_type_patterns($pagetype, $parentcontext = null, $currentcontext = null) {
2122 global $CFG; // Required for includes bellow.
2124 $bits = explode('-', $pagetype);
2126 $core = core_component
::get_core_subsystems();
2127 $plugins = core_component
::get_plugin_types();
2129 //progressively strip pieces off the page type looking for a match
2130 $componentarray = null;
2131 for ($i = count($bits); $i > 0; $i--) {
2132 $possiblecomponentarray = array_slice($bits, 0, $i);
2133 $possiblecomponent = implode('', $possiblecomponentarray);
2135 // Check to see if the component is a core component
2136 if (array_key_exists($possiblecomponent, $core) && !empty($core[$possiblecomponent])) {
2137 $libfile = $core[$possiblecomponent].'/lib.php';
2138 if (file_exists($libfile)) {
2139 require_once($libfile);
2140 $function = $possiblecomponent.'_page_type_list';
2141 if (function_exists($function)) {
2142 if ($patterns = $function($pagetype, $parentcontext, $currentcontext)) {
2149 //check the plugin directory and look for a callback
2150 if (array_key_exists($possiblecomponent, $plugins) && !empty($plugins[$possiblecomponent])) {
2152 //We've found a plugin type. Look for a plugin name by getting the next section of page type
2153 if (count($bits) > $i) {
2154 $pluginname = $bits[$i];
2155 $directory = core_component
::get_plugin_directory($possiblecomponent, $pluginname);
2156 if (!empty($directory)){
2157 $libfile = $directory.'/lib.php';
2158 if (file_exists($libfile)) {
2159 require_once($libfile);
2160 $function = $possiblecomponent.'_'.$pluginname.'_page_type_list';
2161 if (!function_exists($function)) {
2162 $function = $pluginname.'_page_type_list';
2164 if (function_exists($function)) {
2165 if ($patterns = $function($pagetype, $parentcontext, $currentcontext)) {
2173 //we'll only get to here if we still don't have any patterns
2174 //the plugin type may have a callback
2175 $directory = $plugins[$possiblecomponent];
2176 $libfile = $directory.'/lib.php';
2177 if (file_exists($libfile)) {
2178 require_once($libfile);
2179 $function = $possiblecomponent.'_page_type_list';
2180 if (function_exists($function)) {
2181 if ($patterns = $function($pagetype, $parentcontext, $currentcontext)) {
2189 if (empty($patterns)) {
2190 $patterns = default_page_type_list($pagetype, $parentcontext, $currentcontext);
2193 // Ensure that the * pattern is always available if editing block 'at distance', so
2194 // we always can 'bring back' it to the original context. MDL-30340
2195 if ((!isset($currentcontext) or !isset($parentcontext) or $currentcontext->id
!= $parentcontext->id
) && !isset($patterns['*'])) {
2196 // TODO: We could change the string here, showing its 'bring back' meaning
2197 $patterns['*'] = get_string('page-x', 'pagetype');
2204 * Generates a default page type list when a more appropriate callback cannot be decided upon.
2206 * @param string $pagetype
2207 * @param stdClass $parentcontext
2208 * @param stdClass $currentcontext
2211 function default_page_type_list($pagetype, $parentcontext = null, $currentcontext = null) {
2212 // Generate page type patterns based on current page type if
2213 // callbacks haven't been defined
2214 $patterns = array($pagetype => $pagetype);
2215 $bits = explode('-', $pagetype);
2216 while (count($bits) > 0) {
2217 $pattern = implode('-', $bits) . '-*';
2218 $pagetypestringname = 'page-'.str_replace('*', 'x', $pattern);
2219 // guessing page type description
2220 if (get_string_manager()->string_exists($pagetypestringname, 'pagetype')) {
2221 $patterns[$pattern] = get_string($pagetypestringname, 'pagetype');
2223 $patterns[$pattern] = $pattern;
2227 $patterns['*'] = get_string('page-x', 'pagetype');
2232 * Generates the page type list for the my moodle page
2234 * @param string $pagetype
2235 * @param stdClass $parentcontext
2236 * @param stdClass $currentcontext
2239 function my_page_type_list($pagetype, $parentcontext = null, $currentcontext = null) {
2240 return array('my-index' => get_string('page-my-index', 'pagetype'));
2244 * Generates the page type list for a module by either locating and using the modules callback
2245 * or by generating a default list.
2247 * @param string $pagetype
2248 * @param stdClass $parentcontext
2249 * @param stdClass $currentcontext
2252 function mod_page_type_list($pagetype, $parentcontext = null, $currentcontext = null) {
2253 $patterns = plugin_page_type_list($pagetype, $parentcontext, $currentcontext);
2254 if (empty($patterns)) {
2255 // if modules don't have callbacks
2256 // generate two default page type patterns for modules only
2257 $bits = explode('-', $pagetype);
2258 $patterns = array($pagetype => $pagetype);
2259 if ($bits[2] == 'view') {
2260 $patterns['mod-*-view'] = get_string('page-mod-x-view', 'pagetype');
2261 } else if ($bits[2] == 'index') {
2262 $patterns['mod-*-index'] = get_string('page-mod-x-index', 'pagetype');
2267 /// Functions update the blocks if required by the request parameters ==========
2270 * Return a {@link block_contents} representing the add a new block UI, if
2271 * this user is allowed to see it.
2273 * @return block_contents an appropriate block_contents, or null if the user
2274 * cannot add any blocks here.
2276 function block_add_block_ui($page, $output) {
2277 global $CFG, $OUTPUT;
2278 if (!$page->user_is_editing() ||
!$page->user_can_edit_blocks()) {
2282 $bc = new block_contents();
2283 $bc->title
= get_string('addblock');
2284 $bc->add_class('block_adminblock');
2285 $bc->attributes
['data-block'] = 'adminblock';
2287 $missingblocks = $page->blocks
->get_addable_blocks();
2288 if (empty($missingblocks)) {
2289 $bc->content
= get_string('noblockstoaddhere');
2294 foreach ($missingblocks as $block) {
2295 $menu[$block->name
] = $block->title
;
2298 $actionurl = new moodle_url($page->url
, array('sesskey'=>sesskey()));
2299 $select = new single_select($actionurl, 'bui_addblock', $menu, null, array(''=>get_string('adddots')), 'add_block');
2300 $select->set_label(get_string('addblock'), array('class'=>'accesshide'));
2301 $bc->content
= $OUTPUT->render($select);
2306 * Actually delete from the database any blocks that are currently on this page,
2307 * but which should not be there according to blocks_name_allowed_in_format.
2309 * @todo Write/Fix this function. Currently returns immediately
2312 function blocks_remove_inappropriate($course) {
2316 $blockmanager = blocks_get_by_page($page);
2318 if (empty($blockmanager)) {
2322 if (($pageformat = $page->pagetype) == NULL) {
2326 foreach($blockmanager as $region) {
2327 foreach($region as $instance) {
2328 $block = blocks_get_record($instance->blockid);
2329 if(!blocks_name_allowed_in_format($block->name, $pageformat)) {
2330 blocks_delete_instance($instance->instance);
2337 * Check that a given name is in a permittable format
2339 * @param string $name
2340 * @param string $pageformat
2343 function blocks_name_allowed_in_format($name, $pageformat) {
2346 if (!$bi = block_instance($name)) {
2350 $formats = $bi->applicable_formats();
2354 foreach ($formats as $format => $allowed) {
2355 $formatregex = '/^'.str_replace('*', '[^-]*', $format).'.*$/';
2356 $depth = substr_count($format, '-');
2357 if (preg_match($formatregex, $pageformat) && $depth > $maxdepth) {
2362 if ($accept === NULL) {
2363 $accept = !empty($formats['all']);
2369 * Delete a block, and associated data.
2371 * @param object $instance a row from the block_instances table
2372 * @param bool $nolongerused legacy parameter. Not used, but kept for backwards compatibility.
2373 * @param bool $skipblockstables for internal use only. Makes @see blocks_delete_all_for_context() more efficient.
2375 function blocks_delete_instance($instance, $nolongerused = false, $skipblockstables = false) {
2378 // Allow plugins to use this block before we completely delete it.
2379 if ($pluginsfunction = get_plugins_with_function('pre_block_delete')) {
2380 foreach ($pluginsfunction as $plugintype => $plugins) {
2381 foreach ($plugins as $pluginfunction) {
2382 $pluginfunction($instance);
2387 if ($block = block_instance($instance->blockname
, $instance)) {
2388 $block->instance_delete();
2390 context_helper
::delete_instance(CONTEXT_BLOCK
, $instance->id
);
2392 if (!$skipblockstables) {
2393 $DB->delete_records('block_positions', array('blockinstanceid' => $instance->id
));
2394 $DB->delete_records('block_instances', array('id' => $instance->id
));
2395 $DB->delete_records_list('user_preferences', 'name', array('block'.$instance->id
.'hidden','docked_block_instance_'.$instance->id
));
2400 * Delete multiple blocks at once.
2402 * @param array $instanceids A list of block instance ID.
2404 function blocks_delete_instances($instanceids) {
2408 $count = count($instanceids);
2409 $chunks = [$instanceids];
2410 if ($count > $limit) {
2411 $chunks = array_chunk($instanceids, $limit);
2414 // Perform deletion for each chunk.
2415 foreach ($chunks as $chunk) {
2416 $instances = $DB->get_recordset_list('block_instances', 'id', $chunk);
2417 foreach ($instances as $instance) {
2418 blocks_delete_instance($instance, false, true);
2420 $instances->close();
2422 $DB->delete_records_list('block_positions', 'blockinstanceid', $chunk);
2423 $DB->delete_records_list('block_instances', 'id', $chunk);
2425 $preferences = array();
2426 foreach ($chunk as $instanceid) {
2427 $preferences[] = 'block' . $instanceid . 'hidden';
2428 $preferences[] = 'docked_block_instance_' . $instanceid;
2430 $DB->delete_records_list('user_preferences', 'name', $preferences);
2435 * Delete all the blocks that belong to a particular context.
2437 * @param int $contextid the context id.
2439 function blocks_delete_all_for_context($contextid) {
2441 $instances = $DB->get_recordset('block_instances', array('parentcontextid' => $contextid));
2442 foreach ($instances as $instance) {
2443 blocks_delete_instance($instance, true);
2445 $instances->close();
2446 $DB->delete_records('block_instances', array('parentcontextid' => $contextid));
2447 $DB->delete_records('block_positions', array('contextid' => $contextid));
2451 * Set a block to be visible or hidden on a particular page.
2453 * @param object $instance a row from the block_instances, preferably LEFT JOINed with the
2454 * block_positions table as return by block_manager.
2455 * @param moodle_page $page the back to set the visibility with respect to.
2456 * @param integer $newvisibility 1 for visible, 0 for hidden.
2458 function blocks_set_visibility($instance, $page, $newvisibility) {
2460 if (!empty($instance->blockpositionid
)) {
2461 // Already have local information on this page.
2462 $DB->set_field('block_positions', 'visible', $newvisibility, array('id' => $instance->blockpositionid
));
2466 // Create a new block_positions record.
2468 $bp->blockinstanceid
= $instance->id
;
2469 $bp->contextid
= $page->context
->id
;
2470 $bp->pagetype
= $page->pagetype
;
2471 if ($page->subpage
) {
2472 $bp->subpage
= $page->subpage
;
2474 $bp->visible
= $newvisibility;
2475 $bp->region
= $instance->defaultregion
;
2476 $bp->weight
= $instance->defaultweight
;
2477 $DB->insert_record('block_positions', $bp);
2481 * Get the block record for a particular blockid - that is, a particular type os block.
2483 * @param $int blockid block type id. If null, an array of all block types is returned.
2484 * @param bool $notusedanymore No longer used.
2485 * @return array|object row from block table, or all rows.
2487 function blocks_get_record($blockid = NULL, $notusedanymore = false) {
2489 $blocks = $PAGE->blocks
->get_installed_blocks();
2490 if ($blockid === NULL) {
2492 } else if (isset($blocks[$blockid])) {
2493 return $blocks[$blockid];
2500 * Find a given block by its blockid within a provide array
2502 * @param int $blockid
2503 * @param array $blocksarray
2504 * @return bool|object Instance if found else false
2506 function blocks_find_block($blockid, $blocksarray) {
2507 if (empty($blocksarray)) {
2510 foreach($blocksarray as $blockgroup) {
2511 if (empty($blockgroup)) {
2514 foreach($blockgroup as $instance) {
2515 if($instance->blockid
== $blockid) {
2523 // Functions for programatically adding default blocks to pages ================
2526 * Parse a list of default blocks. See config-dist for a description of the format.
2528 * @param string $blocksstr Determines the starting point that the blocks are added in the region.
2529 * @return array the parsed list of default blocks
2531 function blocks_parse_default_blocks_list($blocksstr) {
2533 $bits = explode(':', $blocksstr);
2534 if (!empty($bits)) {
2535 $leftbits = trim(array_shift($bits));
2536 if ($leftbits != '') {
2537 $blocks[BLOCK_POS_LEFT
] = explode(',', $leftbits);
2540 if (!empty($bits)) {
2541 $rightbits = trim(array_shift($bits));
2542 if ($rightbits != '') {
2543 $blocks[BLOCK_POS_RIGHT
] = explode(',', $rightbits);
2550 * @return array the blocks that should be added to the site course by default.
2552 function blocks_get_default_site_course_blocks() {
2555 if (isset($CFG->defaultblocks_site
)) {
2556 return blocks_parse_default_blocks_list($CFG->defaultblocks_site
);
2559 BLOCK_POS_LEFT
=> array(),
2560 BLOCK_POS_RIGHT
=> array()
2566 * Add the default blocks to a course.
2568 * @param object $course a course object.
2570 function blocks_add_default_course_blocks($course) {
2573 if (isset($CFG->defaultblocks_override
)) {
2574 $blocknames = blocks_parse_default_blocks_list($CFG->defaultblocks_override
);
2576 } else if ($course->id
== SITEID
) {
2577 $blocknames = blocks_get_default_site_course_blocks();
2579 } else if (isset($CFG->{'defaultblocks_' . $course->format
})) {
2580 $blocknames = blocks_parse_default_blocks_list($CFG->{'defaultblocks_' . $course->format
});
2583 require_once($CFG->dirroot
. '/course/lib.php');
2584 $blocknames = course_get_format($course)->get_default_blocks();
2588 if ($course->id
== SITEID
) {
2589 $pagetypepattern = 'site-index';
2591 $pagetypepattern = 'course-view-*';
2593 $page = new moodle_page();
2594 $page->set_course($course);
2595 $page->blocks
->add_blocks($blocknames, $pagetypepattern);
2599 * Add the default system-context blocks. E.g. the admin tree.
2601 function blocks_add_default_system_blocks() {
2604 $page = new moodle_page();
2605 $page->set_context(context_system
::instance());
2606 // We don't add blocks required by the theme, they will be auto-created.
2607 $page->blocks
->add_blocks(array(BLOCK_POS_LEFT
=> array('admin_bookmarks')), 'admin-*', null, null, 2);
2609 if ($defaultmypage = $DB->get_record('my_pages', array('userid' => null, 'name' => '__default', 'private' => 1))) {
2610 $subpagepattern = $defaultmypage->id
;
2612 $subpagepattern = null;
2615 $newblocks = array('timeline', 'private_files', 'online_users', 'badges', 'calendar_month', 'calendar_upcoming');
2616 $newcontent = array('lp', 'recentlyaccessedcourses', 'myoverview');
2617 $page->blocks
->add_blocks(array(BLOCK_POS_RIGHT
=> $newblocks, 'content' => $newcontent), 'my-index', $subpagepattern);