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 $undeletableblocks = self
::get_undeletable_block_types();
218 $unaddablebythemeblocks = $this->get_unaddable_by_theme_block_types();
219 $requiredbythemeblocks = $this->get_required_by_theme_block_types();
220 $pageformat = $this->page
->pagetype
;
221 foreach($allblocks as $block) {
222 if (!$bi = block_instance($block->name
)) {
225 if ($block->visible
&& !in_array($block->name
, $undeletableblocks) &&
226 !in_array($block->name
, $requiredbythemeblocks) &&
227 !in_array($block->name
, $unaddablebythemeblocks) &&
228 $bi->can_block_be_added($this->page
) &&
229 ($bi->instance_allow_multiple() ||
!$this->is_block_present($block->name
)) &&
230 blocks_name_allowed_in_format($block->name
, $pageformat) &&
231 $bi->user_can_addto($this->page
)) {
232 $block->title
= $bi->get_title();
233 $this->addableblocks
[$block->name
] = $block;
237 core_collator
::asort_objects_by_property($this->addableblocks
, 'title');
238 return $this->addableblocks
;
242 * Given a block name, find out of any of them are currently present in the page
244 * @param string $blockname - the basic name of a block (eg "navigation")
245 * @return boolean - is there one of these blocks in the current page?
247 public function is_block_present($blockname) {
248 if (empty($this->blockinstances
)) {
252 $requiredbythemeblocks = $this->get_required_by_theme_block_types();
253 foreach ($this->blockinstances
as $region) {
254 foreach ($region as $instance) {
255 if (empty($instance->instance
->blockname
)) {
258 if ($instance->instance
->blockname
== $blockname) {
259 if ($instance->instance
->requiredbytheme
) {
260 if (!in_array($blockname, $requiredbythemeblocks)) {
272 * Find out if a block type is known by the system
274 * @param string $blockname the name of the type of block.
275 * @param boolean $includeinvisible if false (default) only check 'visible' blocks, that is, blocks enabled by the admin.
276 * @return boolean true if this block in installed.
278 public function is_known_block_type($blockname, $includeinvisible = false) {
279 $blocks = $this->get_installed_blocks();
280 foreach ($blocks as $block) {
281 if ($block->name
== $blockname && ($includeinvisible ||
$block->visible
)) {
289 * Find out if a region exists on a page
291 * @param string $region a region name
292 * @return boolean true if this region exists on this page.
294 public function is_known_region($region) {
295 if (empty($region)) {
298 return array_key_exists($region, $this->regions
);
302 * Get an array of all blocks within a given region
304 * @param string $region a block region that exists on this page.
305 * @return array of block instances.
307 public function get_blocks_for_region($region) {
308 $this->check_is_loaded();
309 $this->ensure_instances_exist($region);
310 return $this->blockinstances
[$region];
314 * Returns an array of block content objects that exist in a region
316 * @param string $region a block region that exists on this page.
317 * @return array of block block_contents objects for all the blocks in a region.
319 public function get_content_for_region($region, $output) {
320 $this->check_is_loaded();
321 $this->ensure_content_created($region, $output);
322 return $this->visibleblockcontent
[$region];
326 * Returns an array of block content objects for all the existings regions
328 * @param renderer_base $output the rendered to use
329 * @return array of block block_contents objects for all the blocks in all regions.
332 public function get_content_for_all_regions($output) {
334 $this->check_is_loaded();
336 foreach ($this->regions
as $region => $val) {
337 $this->ensure_content_created($region, $output);
338 $contents[$region] = $this->visibleblockcontent
[$region];
344 * Helper method used by get_content_for_region.
345 * @param string $region region name
346 * @param float $weight weight. May be fractional, since you may want to move a block
347 * between ones with weight 2 and 3, say ($weight would be 2.5).
348 * @return string URL for moving block $this->movingblock to this position.
350 protected function get_move_target_url($region, $weight) {
351 return new moodle_url($this->page
->url
, array('bui_moveid' => $this->movingblock
,
352 'bui_newregion' => $region, 'bui_newweight' => $weight, 'sesskey' => sesskey()));
356 * Determine whether a region contains anything. (Either any real blocks, or
357 * the add new block UI.)
359 * (You may wonder why the $output parameter is required. Unfortunately,
360 * because of the way that blocks work, the only reliable way to find out
361 * if a block will be visible is to get the content for output, and to
362 * get the content, you need a renderer. Fortunately, this is not a
363 * performance problem, because we cache the output that is generated, and
364 * in almost every case where we call region_has_content, we are about to
365 * output the blocks anyway, so we are not doing wasted effort.)
367 * @param string $region a block region that exists on this page.
368 * @param core_renderer $output a core_renderer. normally the global $OUTPUT.
369 * @return boolean Whether there is anything in this region.
371 public function region_has_content($region, $output) {
373 if (!$this->is_known_region($region)) {
376 $this->check_is_loaded();
377 $this->ensure_content_created($region, $output);
378 // if ($this->page->user_is_editing() && $this->page->user_can_edit_blocks()) {
379 // Mark Nielsen's patch - part 1
380 if ($this->page
->user_is_editing() && $this->page
->user_can_edit_blocks() && $this->movingblock
) {
381 // If editing is on, we need all the block regions visible, for the
385 return !empty($this->visibleblockcontent
[$region]) ||
!empty($this->extracontent
[$region]);
389 * Determine whether a region contains any fake blocks.
391 * (Fake blocks are typically added to the extracontent array per region)
393 * @param string $region a block region that exists on this page.
394 * @return boolean Whether there are fake blocks in this region.
396 public function region_has_fakeblocks($region): bool {
397 return !empty($this->extracontent
[$region]);
401 * Get an array of all of the installed blocks.
403 * @return array contents of the block table.
405 public function get_installed_blocks() {
407 if (is_null($this->allblocks
)) {
408 $this->allblocks
= $DB->get_records('block');
410 return $this->allblocks
;
414 * @return array names of block types that must exist on every page with this theme.
416 public function get_required_by_theme_block_types() {
417 $requiredbythemeblocks = false;
418 if (isset($this->page
->theme
->requiredblocks
)) {
419 $requiredbythemeblocks = $this->page
->theme
->requiredblocks
;
422 if ($requiredbythemeblocks === false) {
423 return array('navigation', 'settings');
424 } else if ($requiredbythemeblocks === '') {
426 } else if (is_string($requiredbythemeblocks)) {
427 return explode(',', $requiredbythemeblocks);
429 return $requiredbythemeblocks;
434 * It returns the list of blocks that can't be displayed in the "Add a block" list.
435 * This information is taken from the unaddableblocks theme setting.
437 * @return array A list with the blocks that won't be displayed in the "Add a block" list.
439 public function get_unaddable_by_theme_block_types(): array {
440 $unaddablebythemeblocks = [];
441 if (isset($this->page
->theme
->settings
->unaddableblocks
) && !empty($this->page
->theme
->settings
->unaddableblocks
)) {
442 $unaddablebythemeblocks = array_map('trim', explode(',', $this->page
->theme
->settings
->unaddableblocks
));
445 return $unaddablebythemeblocks;
449 * Make this block type undeletable and unaddable.
451 * @param mixed $blockidorname string or int
453 public static function protect_block($blockidorname) {
456 $syscontext = context_system
::instance();
458 require_capability('moodle/site:config', $syscontext);
461 if (is_int($blockidorname)) {
462 $block = $DB->get_record('block', array('id' => $blockidorname), 'id, name', MUST_EXIST
);
464 $block = $DB->get_record('block', array('name' => $blockidorname), 'id, name', MUST_EXIST
);
466 $undeletableblocktypes = self
::get_undeletable_block_types();
467 if (!in_array($block->name
, $undeletableblocktypes)) {
468 $undeletableblocktypes[] = $block->name
;
469 set_config('undeletableblocktypes', implode(',', $undeletableblocktypes));
470 add_to_config_log('block_protect', "0", "1", $block->name
);
475 * Make this block type deletable and addable.
477 * @param mixed $blockidorname string or int
479 public static function unprotect_block($blockidorname) {
482 $syscontext = context_system
::instance();
484 require_capability('moodle/site:config', $syscontext);
487 if (is_int($blockidorname)) {
488 $block = $DB->get_record('block', array('id' => $blockidorname), 'id, name', MUST_EXIST
);
490 $block = $DB->get_record('block', array('name' => $blockidorname), 'id, name', MUST_EXIST
);
492 $undeletableblocktypes = self
::get_undeletable_block_types();
493 if (in_array($block->name
, $undeletableblocktypes)) {
494 $undeletableblocktypes = array_diff($undeletableblocktypes, array($block->name
));
495 set_config('undeletableblocktypes', implode(',', $undeletableblocktypes));
496 add_to_config_log('block_protect', "1", "0", $block->name
);
502 * Get the list of "protected" blocks via admin block manager ui.
504 * @return array names of block types that cannot be added or deleted. E.g. array('navigation','settings').
506 public static function get_undeletable_block_types() {
508 $undeletableblocks = false;
509 if (isset($CFG->undeletableblocktypes
)) {
510 $undeletableblocks = $CFG->undeletableblocktypes
;
513 if (empty($undeletableblocks)) {
515 } else if (is_string($undeletableblocks)) {
516 return explode(',', $undeletableblocks);
518 return $undeletableblocks;
522 /// Setter methods =============================================================
525 * Add a region to a page
527 * @param string $region add a named region where blocks may appear on the current page.
528 * This is an internal name, like 'side-pre', not a string to display in the UI.
529 * @param bool $custom True if this is a custom block region, being added by the page rather than the theme layout.
531 public function add_region($region, $custom = true) {
533 $this->check_not_yet_loaded();
535 if (array_key_exists($region, $this->regions
)) {
536 // This here is EXACTLY why we should not be adding block regions into a page. It should
537 // ALWAYS be done in a theme layout.
538 debugging('A custom region conflicts with a block region in the theme.', DEBUG_DEVELOPER
);
540 // We need to register this custom region against the page type being used.
541 // This allows us to check, when performing block actions, that unrecognised regions can be worked with.
542 $type = $this->page
->pagetype
;
543 if (!isset($SESSION->custom_block_regions
)) {
544 $SESSION->custom_block_regions
= array($type => array($region));
545 } else if (!isset($SESSION->custom_block_regions
[$type])) {
546 $SESSION->custom_block_regions
[$type] = array($region);
547 } else if (!in_array($region, $SESSION->custom_block_regions
[$type])) {
548 $SESSION->custom_block_regions
[$type][] = $region;
551 $this->regions
[$region] = 1;
553 // Checking the actual property instead of calling get_default_region as it ends up in a recursive call.
554 if (empty($this->defaultregion
)) {
555 $this->set_default_region($region);
560 * Add an array of regions
563 * @param array $regions this utility method calls add_region for each array element.
565 public function add_regions($regions, $custom = true) {
566 foreach ($regions as $region) {
567 $this->add_region($region, $custom);
572 * Finds custom block regions associated with a page type and registers them with this block manager.
574 * @param string $pagetype
576 public function add_custom_regions_for_pagetype($pagetype) {
578 if (isset($SESSION->custom_block_regions
[$pagetype])) {
579 foreach ($SESSION->custom_block_regions
[$pagetype] as $customregion) {
580 $this->add_region($customregion, false);
586 * Set the default region for new blocks on the page
588 * @param string $defaultregion the internal names of the region where new
589 * blocks should be added by default, and where any blocks from an
590 * unrecognised region are shown.
592 public function set_default_region($defaultregion) {
593 $this->check_not_yet_loaded();
594 if ($defaultregion) {
595 $this->check_region_is_known($defaultregion);
597 $this->defaultregion
= $defaultregion;
601 * Add something that looks like a block, but which isn't an actual block_instance,
604 * @param block_contents $bc the content of the block-like thing.
605 * @param string $region a block region that exists on this page.
607 public function add_fake_block($bc, $region) {
608 $this->page
->initialise_theme_and_output();
609 if (!$this->is_known_region($region)) {
610 $region = $this->get_default_region();
612 if (array_key_exists($region, $this->visibleblockcontent
)) {
613 throw new coding_exception('block_manager has already prepared the blocks in region ' .
614 $region . 'for output. It is too late to add a fake block.');
616 if (!isset($bc->attributes
['data-block'])) {
617 $bc->attributes
['data-block'] = '_fake';
619 $bc->attributes
['class'] .= ' block_fake';
620 $this->extracontent
[$region][] = $bc;
624 * Checks to see whether all of the blocks within the given region are docked
626 * @see region_uses_dock
627 * @param string $region
628 * @return bool True if all of the blocks within that region are docked
630 * Return false as from MDL-64506
632 public function region_completely_docked($region, $output) {
637 * Checks to see whether any of the blocks within the given regions are docked
639 * @see region_completely_docked
640 * @param array|string $regions array of regions (or single region)
641 * @return bool True if any of the blocks within that region are docked
643 * Return false as from MDL-64506
645 public function region_uses_dock($regions, $output) {
649 /// Actions ====================================================================
652 * This method actually loads the blocks for our page from the database.
654 * @param boolean|null $includeinvisible
655 * null (default) - load hidden blocks if $this->page->user_is_editing();
656 * true - load hidden blocks.
657 * false - don't load hidden blocks.
659 public function load_blocks($includeinvisible = null) {
662 if (!is_null($this->birecordsbyregion
)) {
667 if ($CFG->version
< 2009050619) {
668 // Upgrade/install not complete. Don't try too show any blocks.
669 $this->birecordsbyregion
= array();
673 // Ensure we have been initialised.
674 if (is_null($this->defaultregion
)) {
675 $this->page
->initialise_theme_and_output();
676 // If there are still no block regions, then there are no blocks on this page.
677 if (empty($this->regions
)) {
678 $this->birecordsbyregion
= array();
683 // Check if we need to load normal blocks
684 if ($this->fakeblocksonly
) {
685 $this->birecordsbyregion
= $this->prepare_per_region_arrays();
689 // Exclude auto created blocks if they are not undeletable in this theme.
690 $requiredbytheme = $this->get_required_by_theme_block_types();
691 $requiredbythemecheck = '';
692 $requiredbythemeparams = array();
693 $requiredbythemenotparams = array();
694 if (!empty($requiredbytheme)) {
695 list($testsql, $requiredbythemeparams) = $DB->get_in_or_equal($requiredbytheme, SQL_PARAMS_NAMED
, 'requiredbytheme');
696 list($testnotsql, $requiredbythemenotparams) = $DB->get_in_or_equal($requiredbytheme, SQL_PARAMS_NAMED
,
697 'notrequiredbytheme', false);
698 $requiredbythemecheck = 'AND ((bi.blockname ' . $testsql . ' AND bi.requiredbytheme = 1) OR ' .
699 ' (bi.blockname ' . $testnotsql . ' AND bi.requiredbytheme = 0))';
701 $requiredbythemecheck = 'AND (bi.requiredbytheme = 0)';
704 if (is_null($includeinvisible)) {
705 $includeinvisible = $this->page
->user_is_editing();
707 if ($includeinvisible) {
710 $visiblecheck = 'AND (bp.visible = 1 OR bp.visible IS NULL) AND (bs.visible = 1 OR bs.visible IS NULL)';
713 $context = $this->page
->context
;
714 $contexttest = 'bi.parentcontextid IN (:contextid2, :contextid3)';
715 $parentcontextparams = array();
716 $parentcontextids = $context->get_parent_context_ids();
717 if ($parentcontextids) {
718 list($parentcontexttest, $parentcontextparams) =
719 $DB->get_in_or_equal($parentcontextids, SQL_PARAMS_NAMED
, 'parentcontext');
720 $contexttest = "($contexttest OR (bi.showinsubcontexts = 1 AND bi.parentcontextid $parentcontexttest))";
723 $pagetypepatterns = matching_page_type_patterns($this->page
->pagetype
);
724 list($pagetypepatterntest, $pagetypepatternparams) =
725 $DB->get_in_or_equal($pagetypepatterns, SQL_PARAMS_NAMED
, 'pagetypepatterntest');
727 $ccselect = ', ' . context_helper
::get_preload_record_columns_sql('ctx');
728 $ccjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = bi.id AND ctx.contextlevel = :contextlevel)";
730 $systemcontext = context_system
::instance();
732 'contextlevel' => CONTEXT_BLOCK
,
733 'subpage1' => $this->page
->subpage
,
734 'subpage2' => $this->page
->subpage
,
735 'subpage3' => $this->page
->subpage
,
736 'contextid1' => $context->id
,
737 'contextid2' => $context->id
,
738 'contextid3' => $systemcontext->id
,
739 'contextid4' => $systemcontext->id
,
740 'pagetype' => $this->page
->pagetype
,
741 'pagetype2' => $this->page
->pagetype
,
743 if ($this->page
->subpage
=== '') {
744 $params['subpage1'] = '';
745 $params['subpage2'] = '';
746 $params['subpage3'] = '';
750 COALESCE(bp.id, bs.id) AS blockpositionid,
753 bi.showinsubcontexts,
759 COALESCE(bp.visible, bs.visible, 1) AS visible,
760 COALESCE(bp.region, bs.region, bi.defaultregion) AS region,
761 COALESCE(bp.weight, bs.weight, bi.defaultweight) AS weight,
765 FROM {block_instances} bi
766 JOIN {block} b ON bi.blockname = b.name
767 LEFT JOIN {block_positions} bp ON bp.blockinstanceid = bi.id
768 AND bp.contextid = :contextid1
769 AND bp.pagetype = :pagetype
770 AND bp.subpage = :subpage1
771 LEFT JOIN {block_positions} bs ON bs.blockinstanceid = bi.id
772 AND bs.contextid = :contextid4
773 AND bs.pagetype = :pagetype2
774 AND bs.subpage = :subpage3
779 AND bi.pagetypepattern $pagetypepatterntest
780 AND (bi.subpagepattern IS NULL OR bi.subpagepattern = :subpage2)
783 $requiredbythemecheck
786 COALESCE(bp.region, bs.region, bi.defaultregion),
787 COALESCE(bp.weight, bs.weight, bi.defaultweight),
790 $allparams = $params +
$parentcontextparams +
$pagetypepatternparams +
$requiredbythemeparams +
$requiredbythemenotparams;
791 $blockinstances = $DB->get_recordset_sql($sql, $allparams);
793 $this->birecordsbyregion
= $this->prepare_per_region_arrays();
795 foreach ($blockinstances as $bi) {
796 context_helper
::preload_from_record($bi);
797 if ($this->is_known_region($bi->region
)) {
798 $this->birecordsbyregion
[$bi->region
][] = $bi;
803 $blockinstances->close();
805 // Pages don't necessarily have a defaultregion. The one time this can
806 // happen is when there are no theme block regions, but the script itself
807 // has a block region in the main content area.
808 if (!empty($this->defaultregion
)) {
809 $this->birecordsbyregion
[$this->defaultregion
] =
810 array_merge($this->birecordsbyregion
[$this->defaultregion
], $unknown);
815 * Add a block to the current page, or related pages. The block is added to
816 * context $this->page->contextid. If $pagetypepattern $subpagepattern
818 * @param string $blockname The type of block to add.
819 * @param string $region the block region on this page to add the block to.
820 * @param integer $weight determines the order where this block appears in the region.
821 * @param boolean $showinsubcontexts whether this block appears in subcontexts, or just the current context.
822 * @param string|null $pagetypepattern which page types this block should appear on. Defaults to just the current page type.
823 * @param string|null $subpagepattern which subpage this block should appear on. NULL = any (the default), otherwise only the specified subpage.
825 public function add_block($blockname, $region, $weight, $showinsubcontexts, $pagetypepattern = NULL, $subpagepattern = NULL) {
827 // Allow invisible blocks because this is used when adding default page blocks, which
828 // might include invisible ones if the user makes some default blocks invisible
829 $this->check_known_block_type($blockname, true);
830 $this->check_region_is_known($region);
832 if (empty($pagetypepattern)) {
833 $pagetypepattern = $this->page
->pagetype
;
836 $blockinstance = new stdClass
;
837 $blockinstance->blockname
= $blockname;
838 $blockinstance->parentcontextid
= $this->page
->context
->id
;
839 $blockinstance->showinsubcontexts
= !empty($showinsubcontexts);
840 $blockinstance->pagetypepattern
= $pagetypepattern;
841 $blockinstance->subpagepattern
= $subpagepattern;
842 $blockinstance->defaultregion
= $region;
843 $blockinstance->defaultweight
= $weight;
844 $blockinstance->configdata
= '';
845 $blockinstance->timecreated
= time();
846 $blockinstance->timemodified
= $blockinstance->timecreated
;
847 $blockinstance->id
= $DB->insert_record('block_instances', $blockinstance);
849 // Ensure the block context is created.
850 context_block
::instance($blockinstance->id
);
852 // If the new instance was created, allow it to do additional setup
853 if ($block = block_instance($blockname, $blockinstance)) {
854 $block->instance_create();
859 * When passed a block name create a new instance of the block in the specified region.
861 * @param string $blockname Name of the block to add.
862 * @param null|string $blockregion If defined add the new block to the specified region.
864 public function add_block_at_end_of_default_region($blockname, $blockregion = null) {
865 if (empty($this->birecordsbyregion
)) {
866 // No blocks or block regions exist yet.
870 if ($blockregion === null) {
871 $defaulregion = $this->get_default_region();
873 $defaulregion = $blockregion;
876 $lastcurrentblock = end($this->birecordsbyregion
[$defaulregion]);
877 if ($lastcurrentblock) {
878 $weight = $lastcurrentblock->weight +
1;
883 if ($this->page
->subpage
) {
884 $subpage = $this->page
->subpage
;
889 // Special case. Course view page type include the course format, but we
890 // want to add the block non-format-specifically.
891 $pagetypepattern = $this->page
->pagetype
;
892 if (strpos($pagetypepattern, 'course-view') === 0) {
893 $pagetypepattern = 'course-view-*';
896 // We should end using this for ALL the blocks, making always the 1st option
897 // the default one to be used. Until then, this is one hack to avoid the
898 // 'pagetypewarning' message on blocks initial edition (MDL-27829) caused by
899 // non-existing $pagetypepattern set. This way at least we guarantee one "valid"
900 // (the FIRST $pagetypepattern will be set)
902 // We are applying it to all blocks created in mod pages for now and only if the
903 // default pagetype is not one of the available options
904 if (preg_match('/^mod-.*-/', $pagetypepattern)) {
905 $pagetypelist = generate_page_type_patterns($this->page
->pagetype
, null, $this->page
->context
);
906 // Only go for the first if the pagetype is not a valid option
907 if (is_array($pagetypelist) && !array_key_exists($pagetypepattern, $pagetypelist)) {
908 $pagetypepattern = key($pagetypelist);
911 // Surely other pages like course-report will need this too, they just are not important
912 // enough now. This will be decided in the coming days. (MDL-27829, MDL-28150)
914 $this->add_block($blockname, $defaulregion, $weight, false, $pagetypepattern, $subpage);
918 * Convenience method, calls add_block repeatedly for all the blocks in $blocks. Optionally, a starting weight
919 * can be used to decide the starting point that blocks are added in the region, the weight is passed to {@link add_block}
920 * and incremented by the position of the block in the $blocks array
922 * @param array $blocks array with array keys the region names, and values an array of block names.
923 * @param string $pagetypepattern optional. Passed to {@link add_block()}
924 * @param string $subpagepattern optional. Passed to {@link add_block()}
925 * @param boolean $showinsubcontexts optional. Passed to {@link add_block()}
926 * @param integer $weight optional. Determines the starting point that the blocks are added in the region.
928 public function add_blocks($blocks, $pagetypepattern = NULL, $subpagepattern = NULL, $showinsubcontexts=false, $weight=0) {
929 $initialweight = $weight;
930 $this->add_regions(array_keys($blocks), false);
931 foreach ($blocks as $region => $regionblocks) {
932 foreach ($regionblocks as $offset => $blockname) {
933 $weight = $initialweight +
$offset;
934 $this->add_block($blockname, $region, $weight, $showinsubcontexts, $pagetypepattern, $subpagepattern);
940 * Move a block to a new position on this page.
942 * If this block cannot appear on any other pages, then we change defaultposition/weight
943 * in the block_instances table. Otherwise we just set the position on this page.
945 * @param $blockinstanceid the block instance id.
946 * @param $newregion the new region name.
947 * @param $newweight the new weight.
949 public function reposition_block($blockinstanceid, $newregion, $newweight) {
952 $this->check_region_is_known($newregion);
953 $inst = $this->find_instance($blockinstanceid);
955 $bi = $inst->instance
;
956 if ($bi->weight
== $bi->defaultweight
&& $bi->region
== $bi->defaultregion
&&
957 !$bi->showinsubcontexts
&& strpos($bi->pagetypepattern
, '*') === false &&
958 (!$this->page
->subpage ||
$bi->subpagepattern
)) {
960 // Set default position
961 $newbi = new stdClass
;
962 $newbi->id
= $bi->id
;
963 $newbi->defaultregion
= $newregion;
964 $newbi->defaultweight
= $newweight;
965 $newbi->timemodified
= time();
966 $DB->update_record('block_instances', $newbi);
968 if ($bi->blockpositionid
) {
970 $bp->id
= $bi->blockpositionid
;
971 $bp->region
= $newregion;
972 $bp->weight
= $newweight;
973 $DB->update_record('block_positions', $bp);
977 // Just set position on this page.
979 $bp->region
= $newregion;
980 $bp->weight
= $newweight;
982 if ($bi->blockpositionid
) {
983 $bp->id
= $bi->blockpositionid
;
984 $DB->update_record('block_positions', $bp);
987 $bp->blockinstanceid
= $bi->id
;
988 $bp->contextid
= $this->page
->context
->id
;
989 $bp->pagetype
= $this->page
->pagetype
;
990 if ($this->page
->subpage
) {
991 $bp->subpage
= $this->page
->subpage
;
995 $bp->visible
= $bi->visible
;
996 $DB->insert_record('block_positions', $bp);
1002 * Find a given block by its instance id
1004 * @param integer $instanceid
1005 * @return block_base
1007 public function find_instance($instanceid) {
1008 foreach ($this->regions
as $region => $notused) {
1009 $this->ensure_instances_exist($region);
1010 foreach($this->blockinstances
[$region] as $instance) {
1011 if ($instance->instance
->id
== $instanceid) {
1016 throw new block_not_on_page_exception($instanceid, $this->page
);
1019 /// Inner workings =============================================================
1022 * Check whether the page blocks have been loaded yet
1024 * @return void Throws coding exception if already loaded
1026 protected function check_not_yet_loaded() {
1027 if (!is_null($this->birecordsbyregion
)) {
1028 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.');
1033 * Check whether the page blocks have been loaded yet
1035 * Nearly identical to the above function {@link check_not_yet_loaded()} except different message
1037 * @return void Throws coding exception if already loaded
1039 protected function check_is_loaded() {
1040 if (is_null($this->birecordsbyregion
)) {
1041 throw new coding_exception('block_manager has not yet loaded the blocks, to it is too soon to request the information you asked for.');
1046 * Check if a block type is known and usable
1048 * @param string $blockname The block type name to search for
1049 * @param bool $includeinvisible Include disabled block types in the initial pass
1050 * @return void Coding Exception thrown if unknown or not enabled
1052 protected function check_known_block_type($blockname, $includeinvisible = false) {
1053 if (!$this->is_known_block_type($blockname, $includeinvisible)) {
1054 if ($this->is_known_block_type($blockname, true)) {
1055 throw new coding_exception('Unknown block type ' . $blockname);
1057 throw new coding_exception('Block type ' . $blockname . ' has been disabled by the administrator.');
1063 * Check if a region is known by its name
1065 * @param string $region
1066 * @return void Coding Exception thrown if the region is not known
1068 protected function check_region_is_known($region) {
1069 if (!$this->is_known_region($region)) {
1070 throw new coding_exception('Trying to reference an unknown block region ' . $region);
1075 * Returns an array of region names as keys and nested arrays for values
1077 * @return array an array where the array keys are the region names, and the array
1078 * values are empty arrays.
1080 protected function prepare_per_region_arrays() {
1082 foreach ($this->regions
as $region => $notused) {
1083 $result[$region] = array();
1089 * Create a set of new block instance from a record array
1091 * @param array $birecords An array of block instance records
1092 * @return array An array of instantiated block_instance objects
1094 protected function create_block_instances($birecords) {
1096 foreach ($birecords as $record) {
1097 if ($blockobject = block_instance($record->blockname
, $record, $this->page
)) {
1098 $results[] = $blockobject;
1105 * Create all the block instances for all the blocks that were loaded by
1106 * load_blocks. This is used, for example, to ensure that all blocks get a
1107 * chance to initialise themselves via the {@link block_base::specialize()}
1108 * method, before any output is done.
1110 * It is also used to create any blocks that are "requiredbytheme" by the current theme.
1111 * These blocks that are auto-created have requiredbytheme set on the block instance
1112 * so they are only visible on themes that require them.
1114 public function create_all_block_instances() {
1117 // If there are any un-removable blocks that were not created - force them.
1118 $requiredbytheme = $this->get_required_by_theme_block_types();
1119 if (!$this->fakeblocksonly
) {
1120 foreach ($requiredbytheme as $forced) {
1121 if (empty($forced)) {
1125 foreach ($this->get_regions() as $region) {
1126 foreach($this->birecordsbyregion
[$region] as $instance) {
1127 if ($instance->blockname
== $forced) {
1133 $this->add_block_required_by_theme($forced);
1140 // Some blocks were missing. Lets do it again.
1141 $this->birecordsbyregion
= null;
1142 $this->load_blocks();
1144 foreach ($this->get_regions() as $region) {
1145 $this->ensure_instances_exist($region);
1151 * Add a block that is required by the current theme but has not been
1152 * created yet. This is a special type of block that only shows in themes that
1153 * require it (by listing it in undeletable_block_types).
1155 * @param string $blockname the name of the block type.
1157 protected function add_block_required_by_theme($blockname) {
1160 if (empty($this->birecordsbyregion
)) {
1161 // No blocks or block regions exist yet.
1165 // Never auto create blocks when we are showing fake blocks only.
1166 if ($this->fakeblocksonly
) {
1170 // Never add a duplicate block required by theme.
1171 if ($DB->record_exists('block_instances', array('blockname' => $blockname, 'requiredbytheme' => 1))) {
1175 $systemcontext = context_system
::instance();
1176 $defaultregion = $this->get_default_region();
1177 // Add a special system wide block instance only for themes that require it.
1178 $blockinstance = new stdClass
;
1179 $blockinstance->blockname
= $blockname;
1180 $blockinstance->parentcontextid
= $systemcontext->id
;
1181 $blockinstance->showinsubcontexts
= true;
1182 $blockinstance->requiredbytheme
= true;
1183 $blockinstance->pagetypepattern
= '*';
1184 $blockinstance->subpagepattern
= null;
1185 $blockinstance->defaultregion
= $defaultregion;
1186 $blockinstance->defaultweight
= 0;
1187 $blockinstance->configdata
= '';
1188 $blockinstance->timecreated
= time();
1189 $blockinstance->timemodified
= $blockinstance->timecreated
;
1190 $blockinstance->id
= $DB->insert_record('block_instances', $blockinstance);
1192 // Ensure the block context is created.
1193 context_block
::instance($blockinstance->id
);
1195 // If the new instance was created, allow it to do additional setup.
1196 if ($block = block_instance($blockname, $blockinstance)) {
1197 $block->instance_create();
1202 * Return an array of content objects from a set of block instances
1204 * @param array $instances An array of block instances
1205 * @param renderer_base The renderer to use.
1206 * @param string $region the region name.
1207 * @return array An array of block_content (and possibly block_move_target) objects.
1209 protected function create_block_contents($instances, $output, $region) {
1214 if ($this->movingblock
) {
1215 $first = reset($instances);
1217 $lastweight = $first->instance
->weight
- 2;
1221 foreach ($instances as $instance) {
1222 $content = $instance->get_content_for_output($output);
1223 if (empty($content)) {
1227 if ($this->movingblock
&& $lastweight != $instance->instance
->weight
&&
1228 $content->blockinstanceid
!= $this->movingblock
&& $lastblock != $this->movingblock
) {
1229 $results[] = new block_move_target($this->get_move_target_url($region, ($lastweight +
$instance->instance
->weight
)/2));
1232 if ($content->blockinstanceid
== $this->movingblock
) {
1233 $content->add_class('beingmoved');
1234 $content->annotation
.= get_string('movingthisblockcancel', 'block',
1235 html_writer
::link($this->page
->url
, get_string('cancel')));
1238 $results[] = $content;
1239 $lastweight = $instance->instance
->weight
;
1240 $lastblock = $instance->instance
->id
;
1243 if ($this->movingblock
&& $lastblock != $this->movingblock
) {
1244 $results[] = new block_move_target($this->get_move_target_url($region, $lastweight +
1));
1250 * Ensure block instances exist for a given region
1252 * @param string $region Check for bi's with the instance with this name
1254 protected function ensure_instances_exist($region) {
1255 $this->check_region_is_known($region);
1256 if (!array_key_exists($region, $this->blockinstances
)) {
1257 $this->blockinstances
[$region] =
1258 $this->create_block_instances($this->birecordsbyregion
[$region]);
1263 * Ensure that there is some content within the given region
1265 * @param string $region The name of the region to check
1267 public function ensure_content_created($region, $output) {
1268 $this->ensure_instances_exist($region);
1270 if (!has_capability('moodle/block:view', $this->page
->context
) ) {
1271 $this->visibleblockcontent
[$region] = [];
1275 if (!array_key_exists($region, $this->visibleblockcontent
)) {
1276 $contents = array();
1277 if (array_key_exists($region, $this->extracontent
)) {
1278 $contents = $this->extracontent
[$region];
1280 $contents = array_merge($contents, $this->create_block_contents($this->blockinstances
[$region], $output, $region));
1281 if (($region == $this->defaultregion
) && (!isset($this->page
->theme
->addblockposition
) ||
1282 $this->page
->theme
->addblockposition
== BLOCK_ADDBLOCK_POSITION_DEFAULT
)) {
1283 $addblockui = block_add_block_ui($this->page
, $output);
1285 $contents[] = $addblockui;
1288 $this->visibleblockcontent
[$region] = $contents;
1292 /// Process actions from the URL ===============================================
1295 * Get the appropriate list of editing icons for a block. This is used
1296 * to set {@link block_contents::$controls} in {@link block_base::get_contents_for_output()}.
1298 * @param $output The core_renderer to use when generating the output. (Need to get icon paths.)
1299 * @return an array in the format for {@link block_contents::$controls}
1301 public function edit_controls($block) {
1304 $controls = array();
1305 $actionurl = $this->page
->url
->out(false, array('sesskey'=> sesskey()));
1306 $blocktitle = $block->title
;
1307 if (empty($blocktitle)) {
1308 $blocktitle = $block->arialabel
;
1311 if ($this->page
->user_can_edit_blocks()) {
1313 $str = new lang_string('moveblock', 'block', $blocktitle);
1314 $controls[] = new action_menu_link_primary(
1315 new moodle_url($actionurl, array('bui_moveid' => $block->instance
->id
)),
1316 new pix_icon('t/move', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1318 array('class' => 'editing_move')
1323 if ($this->page
->user_can_edit_blocks() ||
$block->user_can_edit()) {
1324 // Edit config icon - always show - needed for positioning UI.
1325 $str = new lang_string('configureblock', 'block', $blocktitle);
1326 $editactionurl = new moodle_url($actionurl, ['bui_editid' => $block->instance
->id
]);
1327 $editactionurl->remove_params(['sesskey']);
1329 // Handle editing block on admin index page, prevent the page redirecting before block action can begin.
1330 if ($editactionurl->compare(new moodle_url('/admin/index.php'), URL_MATCH_BASE
)) {
1331 $editactionurl->param('cache', 1);
1334 $controls[] = new action_menu_link_secondary(
1336 new pix_icon('t/edit', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1338 array('class' => 'editing_edit')
1343 if ($this->page
->user_can_edit_blocks() && $block->instance_can_be_hidden()) {
1345 if ($block->instance
->visible
) {
1346 $str = new lang_string('hideblock', 'block', $blocktitle);
1347 $url = new moodle_url($actionurl, array('bui_hideid' => $block->instance
->id
));
1348 $icon = new pix_icon('t/hide', $str, 'moodle', array('class' => 'iconsmall', 'title' => ''));
1349 $attributes = array('class' => 'editing_hide');
1351 $str = new lang_string('showblock', 'block', $blocktitle);
1352 $url = new moodle_url($actionurl, array('bui_showid' => $block->instance
->id
));
1353 $icon = new pix_icon('t/show', $str, 'moodle', array('class' => 'iconsmall', 'title' => ''));
1354 $attributes = array('class' => 'editing_show');
1356 $controls[] = new action_menu_link_secondary($url, $icon, $str, $attributes);
1360 if (get_assignable_roles($block->context
, ROLENAME_SHORT
)) {
1361 $rolesurl = new moodle_url('/admin/roles/assign.php', array('contextid' => $block->context
->id
,
1362 'returnurl' => $this->page
->url
->out_as_local_url()));
1363 $str = new lang_string('assignrolesinblock', 'block', $blocktitle);
1364 $controls[] = new action_menu_link_secondary(
1366 new pix_icon('i/assignroles', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1367 $str, array('class' => 'editing_assignroles')
1372 if (has_capability('moodle/role:review', $block->context
) or get_overridable_roles($block->context
)) {
1373 $rolesurl = new moodle_url('/admin/roles/permissions.php', array('contextid' => $block->context
->id
,
1374 'returnurl' => $this->page
->url
->out_as_local_url()));
1375 $str = get_string('permissions', 'role');
1376 $controls[] = new action_menu_link_secondary(
1378 new pix_icon('i/permissions', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1379 $str, array('class' => 'editing_permissions')
1383 // Change permissions.
1384 if (has_any_capability(array('moodle/role:safeoverride', 'moodle/role:override', 'moodle/role:assign'), $block->context
)) {
1385 $rolesurl = new moodle_url('/admin/roles/check.php', array('contextid' => $block->context
->id
,
1386 'returnurl' => $this->page
->url
->out_as_local_url()));
1387 $str = get_string('checkpermissions', 'role');
1388 $controls[] = new action_menu_link_secondary(
1390 new pix_icon('i/checkpermissions', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1391 $str, array('class' => 'editing_checkroles')
1395 if ($this->user_can_delete_block($block)) {
1397 $str = new lang_string('deleteblock', 'block', $blocktitle);
1398 $deleteactionurl = new moodle_url($actionurl, ['bui_deleteid' => $block->instance
->id
]);
1399 $deleteactionurl->remove_params(['sesskey']);
1401 // Handle deleting block on admin index page, prevent the page redirecting before block action can begin.
1402 if ($deleteactionurl->compare(new moodle_url('/admin/index.php'), URL_MATCH_BASE
)) {
1403 $deleteactionurl->param('cache', 1);
1406 $deleteconfirmationurl = new moodle_url($actionurl, [
1407 'bui_deleteid' => $block->instance
->id
,
1409 'sesskey' => sesskey(),
1411 $blocktitle = $block->get_title();
1413 $controls[] = new action_menu_link_secondary(
1415 new pix_icon('t/delete', $str, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1418 'class' => 'editing_delete',
1419 'data-modal' => 'confirmation',
1420 'data-modal-title-str' => json_encode(['deletecheck_modal', 'block']),
1421 'data-modal-content-str' => json_encode(['deleteblockcheck', 'block', $blocktitle]),
1422 'data-modal-yes-button-str' => json_encode(['delete', 'core']),
1423 'data-modal-toast' => 'true',
1424 'data-modal-toast-confirmation-str' => json_encode(['deleteblockinprogress', 'block', $blocktitle]),
1425 'data-modal-destination' => $deleteconfirmationurl->out(false),
1430 if (!empty($CFG->contextlocking
) && has_capability('moodle/site:managecontextlocks', $block->context
)) {
1431 $parentcontext = $block->context
->get_parent_context();
1432 if (empty($parentcontext) ||
empty($parentcontext->locked
)) {
1433 if ($block->context
->locked
) {
1434 $lockicon = 'i/unlock';
1435 $lockstring = get_string('managecontextunlock', 'admin');
1437 $lockicon = 'i/lock';
1438 $lockstring = get_string('managecontextlock', 'admin');
1440 $controls[] = new action_menu_link_secondary(
1444 'id' => $block->context
->id
,
1447 new pix_icon($lockicon, $lockstring, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1449 ['class' => 'editing_lock']
1458 * @param block_base $block a block that appears on this page.
1459 * @return boolean boolean whether the currently logged in user is allowed to delete this block.
1461 protected function user_can_delete_block($block) {
1462 return $this->page
->user_can_edit_blocks() && $block->user_can_edit() &&
1463 $block->user_can_addto($this->page
) &&
1464 !in_array($block->instance
->blockname
, self
::get_undeletable_block_types()) &&
1465 !in_array($block->instance
->blockname
, $this->get_required_by_theme_block_types());
1469 * Process any block actions that were specified in the URL.
1471 * @return boolean true if anything was done. False if not.
1473 public function process_url_actions() {
1474 if (!$this->page
->user_is_editing()) {
1477 return $this->process_url_add() ||
$this->process_url_delete() ||
1478 $this->process_url_show_hide() ||
$this->process_url_edit() ||
1479 $this->process_url_move();
1483 * Handle adding a block.
1484 * @return boolean true if anything was done. False if not.
1486 public function process_url_add() {
1487 global $CFG, $PAGE, $OUTPUT;
1489 $blocktype = optional_param('bui_addblock', null, PARAM_PLUGIN
);
1490 $blockregion = optional_param('bui_blockregion', null, PARAM_TEXT
);
1492 if ($blocktype === null) {
1498 if (!$this->page
->user_can_edit_blocks()) {
1499 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('addblock'));
1502 $addableblocks = $this->get_addable_blocks();
1504 if ($blocktype === '') {
1505 // Display add block selection.
1506 $addpage = new moodle_page();
1507 $addpage->set_pagelayout('admin');
1508 $addpage->blocks
->show_only_fake_blocks(true);
1509 $addpage->set_course($this->page
->course
);
1510 $addpage->set_context($this->page
->context
);
1511 if ($this->page
->cm
) {
1512 $addpage->set_cm($this->page
->cm
);
1515 $addpagebase = str_replace($CFG->wwwroot
. '/', '/', $this->page
->url
->out_omit_querystring());
1516 $addpageparams = $this->page
->url
->params();
1517 $addpage->set_url($addpagebase, $addpageparams);
1518 $addpage->set_block_actions_done();
1519 // At this point we are going to display the block selector, overwrite global $PAGE ready for this.
1521 // Some functions use $OUTPUT so we need to replace that too.
1522 $OUTPUT = $addpage->get_renderer('core');
1525 $straddblock = get_string('addblock');
1527 $PAGE->navbar
->add($straddblock);
1528 $PAGE->set_title($straddblock);
1529 $PAGE->set_heading($site->fullname
);
1530 echo $OUTPUT->header();
1531 echo $OUTPUT->heading($straddblock);
1533 if (!$addableblocks) {
1534 echo $OUTPUT->box(get_string('noblockstoaddhere'));
1535 echo $OUTPUT->container($OUTPUT->action_link($addpage->url
, get_string('back')), 'mx-3 mb-1');
1537 $url = new moodle_url($addpage->url
, array('sesskey' => sesskey()));
1538 echo $OUTPUT->render_from_template('core/add_block_body',
1539 ['blocks' => array_values($addableblocks),
1540 'url' => '?' . $url->get_query_string(false)]);
1541 echo $OUTPUT->container($OUTPUT->action_link($addpage->url
, get_string('cancel')), 'mx-3 mb-1');
1544 echo $OUTPUT->footer();
1545 // Make sure that nothing else happens after we have displayed this form.
1549 if (!array_key_exists($blocktype, $addableblocks)) {
1550 throw new moodle_exception('cannotaddthisblocktype', '', $this->page
->url
->out(), $blocktype);
1553 $this->add_block_at_end_of_default_region($blocktype, $blockregion);
1555 // If the page URL was a guess, it will contain the bui_... param, so we must make sure it is not there.
1556 $this->page
->ensure_param_not_in_url('bui_addblock');
1562 * Handle deleting a block.
1563 * @return boolean true if anything was done. False if not.
1565 public function process_url_delete() {
1566 global $CFG, $PAGE, $OUTPUT;
1568 $blockid = optional_param('bui_deleteid', null, PARAM_INT
);
1569 $confirmdelete = optional_param('bui_confirm', null, PARAM_INT
);
1575 $block = $this->page
->blocks
->find_instance($blockid);
1576 if (!$this->user_can_delete_block($block)) {
1577 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('deleteablock'));
1580 if (!$confirmdelete) {
1581 $deletepage = new moodle_page();
1582 $deletepage->set_pagelayout('admin');
1583 $deletepage->blocks
->show_only_fake_blocks(true);
1584 $deletepage->set_course($this->page
->course
);
1585 $deletepage->set_context($this->page
->context
);
1586 if ($this->page
->cm
) {
1587 $deletepage->set_cm($this->page
->cm
);
1590 $deleteurlbase = str_replace($CFG->wwwroot
. '/', '/', $this->page
->url
->out_omit_querystring());
1591 $deleteurlparams = $this->page
->url
->params();
1592 $deletepage->set_url($deleteurlbase, $deleteurlparams);
1593 $deletepage->set_block_actions_done();
1594 $deletepage->set_secondarynav($this->get_secondarynav($block));
1595 // At this point we are either going to redirect, or display the form, so
1596 // overwrite global $PAGE ready for this. (Formslib refers to it.)
1597 $PAGE = $deletepage;
1598 //some functions like MoodleQuickForm::addHelpButton use $OUTPUT so we need to replace that too
1599 $output = $deletepage->get_renderer('core');
1603 $blocktitle = $block->get_title();
1604 $strdeletecheck = get_string('deletecheck', 'block', $blocktitle);
1605 $message = get_string('deleteblockcheck', 'block', $blocktitle);
1607 // If the block is being shown in sub contexts display a warning.
1608 if ($block->instance
->showinsubcontexts
== 1) {
1609 $parentcontext = context
::instance_by_id($block->instance
->parentcontextid
);
1610 $systemcontext = context_system
::instance();
1611 $messagestring = new stdClass();
1612 $messagestring->location
= $parentcontext->get_context_name();
1614 // Checking for blocks that may have visibility on the front page and pages added on that.
1615 if ($parentcontext->id
!= $systemcontext->id
&& is_inside_frontpage($parentcontext)) {
1616 $messagestring->pagetype
= get_string('showonfrontpageandsubs', 'block');
1618 $pagetypes = generate_page_type_patterns($this->page
->pagetype
, $parentcontext);
1619 $messagestring->pagetype
= $block->instance
->pagetypepattern
;
1620 if (isset($pagetypes[$block->instance
->pagetypepattern
])) {
1621 $messagestring->pagetype
= $pagetypes[$block->instance
->pagetypepattern
];
1625 $message = get_string('deleteblockwarning', 'block', $messagestring);
1628 $PAGE->navbar
->add($strdeletecheck);
1629 $PAGE->set_title($blocktitle . ': ' . $strdeletecheck);
1630 $PAGE->set_heading($site->fullname
);
1631 echo $OUTPUT->header();
1632 $confirmurl = new moodle_url($deletepage->url
, array('sesskey' => sesskey(), 'bui_deleteid' => $block->instance
->id
, 'bui_confirm' => 1));
1633 $cancelurl = new moodle_url($deletepage->url
);
1634 $yesbutton = new single_button($confirmurl, get_string('yes'));
1635 $nobutton = new single_button($cancelurl, get_string('no'));
1636 echo $OUTPUT->confirm($message, $yesbutton, $nobutton);
1637 echo $OUTPUT->footer();
1638 // Make sure that nothing else happens after we have displayed this form.
1643 blocks_delete_instance($block->instance
);
1644 // bui_deleteid and bui_confirm should not be in the PAGE url.
1645 $this->page
->ensure_param_not_in_url('bui_deleteid');
1646 $this->page
->ensure_param_not_in_url('bui_confirm');
1652 * Handle showing or hiding a block.
1653 * @return boolean true if anything was done. False if not.
1655 public function process_url_show_hide() {
1656 if ($blockid = optional_param('bui_hideid', null, PARAM_INT
)) {
1658 } else if ($blockid = optional_param('bui_showid', null, PARAM_INT
)) {
1666 $block = $this->page
->blocks
->find_instance($blockid);
1668 if (!$this->page
->user_can_edit_blocks()) {
1669 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('hideshowblocks'));
1670 } else if (!$block->instance_can_be_hidden()) {
1674 blocks_set_visibility($block->instance
, $this->page
, $newvisibility);
1676 // If the page URL was a guses, it will contain the bui_... param, so we must make sure it is not there.
1677 $this->page
->ensure_param_not_in_url('bui_hideid');
1678 $this->page
->ensure_param_not_in_url('bui_showid');
1684 * Convenience function to check whether a block is implementing a secondary nav class and return it
1685 * initialised to the calling function
1687 * @param block_base $block
1688 * @return \core\navigation\views\secondary
1690 protected function get_secondarynav(block_base
$block): \core\navigation\views\secondary
{
1691 $class = "core_block\\local\\views\\secondary";
1692 if (class_exists("block_{$block->name()}\\local\\views\\secondary")) {
1693 $class = "block_{$block->name()}\\local\\views\\secondary";
1695 $secondarynav = new $class($this->page
);
1696 $secondarynav->initialise();
1697 return $secondarynav;
1701 * Handle showing/processing the submission from the block editing form.
1702 * @return boolean true if the form was submitted and the new config saved. Does not
1703 * return if the editing form was displayed. False otherwise.
1705 public function process_url_edit() {
1706 global $CFG, $DB, $PAGE, $OUTPUT;
1708 $blockid = optional_param('bui_editid', null, PARAM_INT
);
1713 require_once($CFG->dirroot
. '/blocks/edit_form.php');
1715 $block = $this->find_instance($blockid);
1717 if (!$block->user_can_edit() && !$this->page
->user_can_edit_blocks()) {
1718 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('editblock'));
1721 $editpage = new moodle_page();
1722 $editpage->set_pagelayout('admin');
1723 $editpage->blocks
->show_only_fake_blocks(true);
1724 $editpage->set_course($this->page
->course
);
1725 //$editpage->set_context($block->context);
1726 $editpage->set_context($this->page
->context
);
1727 $editpage->set_secondarynav($this->get_secondarynav($block));
1729 if ($this->page
->cm
) {
1730 $editpage->set_cm($this->page
->cm
);
1732 $editurlbase = str_replace($CFG->wwwroot
. '/', '/', $this->page
->url
->out_omit_querystring());
1733 $editurlparams = $this->page
->url
->params();
1734 $editurlparams['bui_editid'] = $blockid;
1735 $editpage->set_url($editurlbase, $editurlparams);
1736 $editpage->set_block_actions_done();
1737 // At this point we are either going to redirect, or display the form, so
1738 // overwrite global $PAGE ready for this. (Formslib refers to it.)
1740 //some functions like MoodleQuickForm::addHelpButton use $OUTPUT so we need to replace that to
1741 $output = $editpage->get_renderer('core');
1744 $formfile = $CFG->dirroot
. '/blocks/' . $block->name() . '/edit_form.php';
1745 if (is_readable($formfile)) {
1746 require_once($formfile);
1747 $classname = 'block_' . $block->name() . '_edit_form';
1748 if (!class_exists($classname)) {
1749 $classname = 'block_edit_form';
1752 $classname = 'block_edit_form';
1755 $mform = new $classname($editpage->url
, $block, $this->page
);
1756 $mform->set_data($block->instance
);
1758 if ($mform->is_cancelled()) {
1759 redirect($this->page
->url
);
1761 } else if ($data = $mform->get_data()) {
1763 $bi->id
= $block->instance
->id
;
1765 // This may get overwritten by the special case handling below.
1766 $bi->pagetypepattern
= $data->bui_pagetypepattern
;
1767 $bi->showinsubcontexts
= (bool) $data->bui_contexts
;
1768 if (empty($data->bui_subpagepattern
) ||
$data->bui_subpagepattern
== '%@NULL@%') {
1769 $bi->subpagepattern
= null;
1771 $bi->subpagepattern
= $data->bui_subpagepattern
;
1774 $systemcontext = context_system
::instance();
1775 $frontpagecontext = context_course
::instance(SITEID
);
1776 $parentcontext = context
::instance_by_id($data->bui_parentcontextid
);
1778 // Updating stickiness and contexts. See MDL-21375 for details.
1779 if (has_capability('moodle/site:manageblocks', $parentcontext)) { // Check permissions in destination
1781 // Explicitly set the default context
1782 $bi->parentcontextid
= $parentcontext->id
;
1784 if ($data->bui_editingatfrontpage
) { // The block is being edited on the front page
1786 // The interface here is a special case because the pagetype pattern is
1787 // totally derived from the context menu. Here are the excpetions. MDL-30340
1789 switch ($data->bui_contexts
) {
1790 case BUI_CONTEXTS_ENTIRE_SITE
:
1791 // The user wants to show the block across the entire site
1792 $bi->parentcontextid
= $systemcontext->id
;
1793 $bi->showinsubcontexts
= true;
1794 $bi->pagetypepattern
= '*';
1796 case BUI_CONTEXTS_FRONTPAGE_SUBS
:
1797 // The user wants the block shown on the front page and all subcontexts
1798 $bi->parentcontextid
= $frontpagecontext->id
;
1799 $bi->showinsubcontexts
= true;
1800 $bi->pagetypepattern
= '*';
1802 case BUI_CONTEXTS_FRONTPAGE_ONLY
:
1803 // The user want to show the front page on the frontpage only
1804 $bi->parentcontextid
= $frontpagecontext->id
;
1805 $bi->showinsubcontexts
= false;
1806 $bi->pagetypepattern
= 'site-index';
1807 // This is the only relevant page type anyway but we'll set it explicitly just
1808 // in case the front page grows site-index-* subpages of its own later
1814 $bits = explode('-', $bi->pagetypepattern
);
1815 // hacks for some contexts
1816 if (($parentcontext->contextlevel
== CONTEXT_COURSE
) && ($parentcontext->instanceid
!= SITEID
)) {
1817 // For course context
1818 // is page type pattern is mod-*, change showinsubcontext to 1
1819 if ($bits[0] == 'mod' ||
$bi->pagetypepattern
== '*') {
1820 $bi->showinsubcontexts
= 1;
1822 $bi->showinsubcontexts
= 0;
1824 } else if ($parentcontext->contextlevel
== CONTEXT_USER
) {
1826 // subpagepattern should be null
1827 if ($bits[0] == 'user' or $bits[0] == 'my') {
1828 // we don't need subpagepattern in usercontext
1829 $bi->subpagepattern
= null;
1833 $bi->defaultregion
= $data->bui_defaultregion
;
1834 $bi->defaultweight
= $data->bui_defaultweight
;
1835 $bi->timemodified
= time();
1836 $DB->update_record('block_instances', $bi);
1838 if (!empty($block->config
)) {
1839 $config = clone($block->config
);
1841 $config = new stdClass
;
1843 foreach ($data as $configfield => $value) {
1844 if (strpos($configfield, 'config_') !== 0) {
1847 $field = substr($configfield, 7);
1848 $config->$field = $value;
1850 $block->instance_config_save($config);
1853 $bp->visible
= $data->bui_visible
;
1854 $bp->region
= $data->bui_region
;
1855 $bp->weight
= $data->bui_weight
;
1856 $needbprecord = !$data->bui_visible ||
$data->bui_region
!= $data->bui_defaultregion ||
1857 $data->bui_weight
!= $data->bui_defaultweight
;
1859 if ($block->instance
->blockpositionid
&& !$needbprecord) {
1860 $DB->delete_records('block_positions', array('id' => $block->instance
->blockpositionid
));
1862 } else if ($block->instance
->blockpositionid
&& $needbprecord) {
1863 $bp->id
= $block->instance
->blockpositionid
;
1864 $DB->update_record('block_positions', $bp);
1866 } else if ($needbprecord) {
1867 $bp->blockinstanceid
= $block->instance
->id
;
1868 $bp->contextid
= $this->page
->context
->id
;
1869 $bp->pagetype
= $this->page
->pagetype
;
1870 if ($this->page
->subpage
) {
1871 $bp->subpage
= $this->page
->subpage
;
1875 $DB->insert_record('block_positions', $bp);
1878 redirect($this->page
->url
);
1881 $strheading = get_string('blockconfiga', 'moodle', $block->get_title());
1882 $editpage->set_title($strheading);
1883 $editpage->set_heading($strheading);
1884 $bits = explode('-', $this->page
->pagetype
);
1885 if ($bits[0] == 'tag' && !empty($this->page
->subpage
)) {
1886 // better navbar for tag pages
1887 $editpage->navbar
->add(get_string('tags'), new moodle_url('/tag/'));
1888 $tag = core_tag_tag
::get($this->page
->subpage
);
1889 // tag search page doesn't have subpageid
1891 $editpage->navbar
->add($tag->get_display_name(), $tag->get_view_url());
1894 $editpage->navbar
->add($block->get_title());
1895 $editpage->navbar
->add(get_string('configuration'));
1896 echo $output->header();
1898 echo $output->footer();
1904 * Handle showing/processing the submission from the block editing form.
1905 * @return boolean true if the form was submitted and the new config saved. Does not
1906 * return if the editing form was displayed. False otherwise.
1908 public function process_url_move() {
1909 global $CFG, $DB, $PAGE;
1911 $blockid = optional_param('bui_moveid', null, PARAM_INT
);
1918 $block = $this->find_instance($blockid);
1920 if (!$this->page
->user_can_edit_blocks()) {
1921 throw new moodle_exception('nopermissions', '', $this->page
->url
->out(), get_string('editblock'));
1924 $newregion = optional_param('bui_newregion', '', PARAM_ALPHANUMEXT
);
1925 $newweight = optional_param('bui_newweight', null, PARAM_FLOAT
);
1926 if (!$newregion ||
is_null($newweight)) {
1927 // Don't have a valid target position yet, must be just starting the move.
1928 $this->movingblock
= $blockid;
1929 $this->page
->ensure_param_not_in_url('bui_moveid');
1933 if (!$this->is_known_region($newregion)) {
1934 throw new moodle_exception('unknownblockregion', '', $this->page
->url
, $newregion);
1937 // Move this block. This may involve moving other nearby blocks.
1938 $blocks = $this->birecordsbyregion
[$newregion];
1940 $maxweight = self
::MAX_WEIGHT
;
1941 $minweight = -self
::MAX_WEIGHT
;
1943 // Initialise the used weights and spareweights array with the default values
1944 $spareweights = array();
1945 $usedweights = array();
1946 for ($i = $minweight; $i <= $maxweight; $i++
) {
1947 $spareweights[$i] = $i;
1948 $usedweights[$i] = array();
1951 // Check each block and sort out where we have used weights
1952 foreach ($blocks as $bi) {
1953 if ($bi->weight
> $maxweight) {
1954 // If this statement is true then the blocks weight is more than the
1955 // current maximum. To ensure that we can get the best block position
1956 // we will initialise elements within the usedweights and spareweights
1957 // arrays between the blocks weight (which will then be the new max) and
1959 $parseweight = $bi->weight
;
1960 while (!array_key_exists($parseweight, $usedweights)) {
1961 $usedweights[$parseweight] = array();
1962 $spareweights[$parseweight] = $parseweight;
1965 $maxweight = $bi->weight
;
1966 } else if ($bi->weight
< $minweight) {
1967 // As above except this time the blocks weight is LESS than the
1968 // the current minimum, so we will initialise the array from the
1969 // blocks weight (new minimum) to the current minimum
1970 $parseweight = $bi->weight
;
1971 while (!array_key_exists($parseweight, $usedweights)) {
1972 $usedweights[$parseweight] = array();
1973 $spareweights[$parseweight] = $parseweight;
1976 $minweight = $bi->weight
;
1978 if ($bi->id
!= $block->instance
->id
) {
1979 unset($spareweights[$bi->weight
]);
1980 $usedweights[$bi->weight
][] = $bi->id
;
1984 // First we find the nearest gap in the list of weights.
1985 $bestdistance = max(abs($newweight - self
::MAX_WEIGHT
), abs($newweight + self
::MAX_WEIGHT
)) +
1;
1987 foreach ($spareweights as $spareweight) {
1988 if (abs($newweight - $spareweight) < $bestdistance) {
1989 $bestdistance = abs($newweight - $spareweight);
1990 $bestgap = $spareweight;
1994 // If there is no gap, we have to go outside -self::MAX_WEIGHT .. self::MAX_WEIGHT.
1995 if (is_null($bestgap)) {
1996 $bestgap = self
::MAX_WEIGHT +
1;
1997 while (!empty($usedweights[$bestgap])) {
2002 // Now we know the gap we are aiming for, so move all the blocks along.
2003 if ($bestgap < $newweight) {
2004 $newweight = floor($newweight);
2005 for ($weight = $bestgap +
1; $weight <= $newweight; $weight++
) {
2006 if (array_key_exists($weight, $usedweights)) {
2007 foreach ($usedweights[$weight] as $biid) {
2008 $this->reposition_block($biid, $newregion, $weight - 1);
2012 $this->reposition_block($block->instance
->id
, $newregion, $newweight);
2014 $newweight = ceil($newweight);
2015 for ($weight = $bestgap - 1; $weight >= $newweight; $weight--) {
2016 if (array_key_exists($weight, $usedweights)) {
2017 foreach ($usedweights[$weight] as $biid) {
2018 $this->reposition_block($biid, $newregion, $weight +
1);
2022 $this->reposition_block($block->instance
->id
, $newregion, $newweight);
2025 $this->page
->ensure_param_not_in_url('bui_moveid');
2026 $this->page
->ensure_param_not_in_url('bui_newregion');
2027 $this->page
->ensure_param_not_in_url('bui_newweight');
2032 * Turns the display of normal blocks either on or off.
2034 * @param bool $setting
2036 public function show_only_fake_blocks($setting = true) {
2037 $this->fakeblocksonly
= $setting;
2041 /// Helper functions for working with block classes ============================
2044 * Call a class method (one that does not require a block instance) on a block class.
2046 * @param string $blockname the name of the block.
2047 * @param string $method the method name.
2048 * @param array $param parameters to pass to the method.
2049 * @return mixed whatever the method returns.
2051 function block_method_result($blockname, $method, $param = NULL) {
2052 if(!block_load_class($blockname)) {
2055 return call_user_func(array('block_'.$blockname, $method), $param);
2059 * Returns a new instance of the specified block instance id.
2061 * @param int $blockinstanceid
2062 * @return block_base the requested block instance.
2064 function block_instance_by_id($blockinstanceid) {
2067 $blockinstance = $DB->get_record('block_instances', ['id' => $blockinstanceid]);
2068 $instance = block_instance($blockinstance->blockname
, $blockinstance);
2073 * Creates a new instance of the specified block class.
2075 * @param string $blockname the name of the block.
2076 * @param $instance block_instances DB table row (optional).
2077 * @param moodle_page $page the page this block is appearing on.
2078 * @return block_base the requested block instance.
2080 function block_instance($blockname, $instance = NULL, $page = NULL) {
2081 if(!block_load_class($blockname)) {
2084 $classname = 'block_'.$blockname;
2085 $retval = new $classname;
2086 if($instance !== NULL) {
2087 if (is_null($page)) {
2091 $retval->_load_instance($instance, $page);
2097 * Load the block class for a particular type of block.
2099 * @param string $blockname the name of the block.
2100 * @return boolean success or failure.
2102 function block_load_class($blockname) {
2105 if(empty($blockname)) {
2109 $classname = 'block_'.$blockname;
2111 if(class_exists($classname)) {
2115 $blockpath = $CFG->dirroot
.'/blocks/'.$blockname.'/block_'.$blockname.'.php';
2117 if (file_exists($blockpath)) {
2118 require_once($CFG->dirroot
.'/blocks/moodleblock.class.php');
2119 include_once($blockpath);
2121 //debugging("$blockname code does not exist in $blockpath", DEBUG_DEVELOPER);
2125 return class_exists($classname);
2129 * Given a specific page type, return all the page type patterns that might
2132 * @param string $pagetype for example 'course-view-weeks' or 'mod-quiz-view'.
2133 * @return array an array of all the page type patterns that might match this page type.
2135 function matching_page_type_patterns($pagetype) {
2136 $patterns = array($pagetype);
2137 $bits = explode('-', $pagetype);
2138 if (count($bits) == 3 && $bits[0] == 'mod') {
2139 if ($bits[2] == 'view') {
2140 $patterns[] = 'mod-*-view';
2141 } else if ($bits[2] == 'index') {
2142 $patterns[] = 'mod-*-index';
2145 while (count($bits) > 0) {
2146 $patterns[] = implode('-', $bits) . '-*';
2154 * Give an specific pattern, return all the page type patterns that would also match it.
2156 * @param string $pattern the pattern, e.g. 'mod-forum-*' or 'mod-quiz-view'.
2157 * @return array of all the page type patterns matching.
2159 function matching_page_type_patterns_from_pattern($pattern) {
2160 $patterns = array($pattern);
2161 if ($pattern === '*') {
2165 // Only keep the part before the star because we will append -* to all the bits.
2166 $star = strpos($pattern, '-*');
2167 if ($star !== false) {
2168 $pattern = substr($pattern, 0, $star);
2171 $patterns = array_merge($patterns, matching_page_type_patterns($pattern));
2172 $patterns = array_unique($patterns);
2178 * Given a specific page type, parent context and currect context, return all the page type patterns
2179 * that might be used by this block.
2181 * @param string $pagetype for example 'course-view-weeks' or 'mod-quiz-view'.
2182 * @param stdClass $parentcontext Block's parent context
2183 * @param stdClass $currentcontext Current context of block
2184 * @return array an array of all the page type patterns that might match this page type.
2186 function generate_page_type_patterns($pagetype, $parentcontext = null, $currentcontext = null) {
2187 global $CFG; // Required for includes bellow.
2189 $bits = explode('-', $pagetype);
2191 $core = core_component
::get_core_subsystems();
2192 $plugins = core_component
::get_plugin_types();
2194 //progressively strip pieces off the page type looking for a match
2195 $componentarray = null;
2196 for ($i = count($bits); $i > 0; $i--) {
2197 $possiblecomponentarray = array_slice($bits, 0, $i);
2198 $possiblecomponent = implode('', $possiblecomponentarray);
2200 // Check to see if the component is a core component
2201 if (array_key_exists($possiblecomponent, $core) && !empty($core[$possiblecomponent])) {
2202 $libfile = $core[$possiblecomponent].'/lib.php';
2203 if (file_exists($libfile)) {
2204 require_once($libfile);
2205 $function = $possiblecomponent.'_page_type_list';
2206 if (function_exists($function)) {
2207 if ($patterns = $function($pagetype, $parentcontext, $currentcontext)) {
2214 //check the plugin directory and look for a callback
2215 if (array_key_exists($possiblecomponent, $plugins) && !empty($plugins[$possiblecomponent])) {
2217 //We've found a plugin type. Look for a plugin name by getting the next section of page type
2218 if (count($bits) > $i) {
2219 $pluginname = $bits[$i];
2220 $directory = core_component
::get_plugin_directory($possiblecomponent, $pluginname);
2221 if (!empty($directory)){
2222 $libfile = $directory.'/lib.php';
2223 if (file_exists($libfile)) {
2224 require_once($libfile);
2225 $function = $possiblecomponent.'_'.$pluginname.'_page_type_list';
2226 if (!function_exists($function)) {
2227 $function = $pluginname.'_page_type_list';
2229 if (function_exists($function)) {
2230 if ($patterns = $function($pagetype, $parentcontext, $currentcontext)) {
2238 //we'll only get to here if we still don't have any patterns
2239 //the plugin type may have a callback
2240 $directory = $plugins[$possiblecomponent];
2241 $libfile = $directory.'/lib.php';
2242 if (file_exists($libfile)) {
2243 require_once($libfile);
2244 $function = $possiblecomponent.'_page_type_list';
2245 if (function_exists($function)) {
2246 if ($patterns = $function($pagetype, $parentcontext, $currentcontext)) {
2254 if (empty($patterns)) {
2255 $patterns = default_page_type_list($pagetype, $parentcontext, $currentcontext);
2258 // Ensure that the * pattern is always available if editing block 'at distance', so
2259 // we always can 'bring back' it to the original context. MDL-30340
2260 if ((!isset($currentcontext) or !isset($parentcontext) or $currentcontext->id
!= $parentcontext->id
) && !isset($patterns['*'])) {
2261 // TODO: We could change the string here, showing its 'bring back' meaning
2262 $patterns['*'] = get_string('page-x', 'pagetype');
2269 * Generates a default page type list when a more appropriate callback cannot be decided upon.
2271 * @param string $pagetype
2272 * @param stdClass $parentcontext
2273 * @param stdClass $currentcontext
2276 function default_page_type_list($pagetype, $parentcontext = null, $currentcontext = null) {
2277 // Generate page type patterns based on current page type if
2278 // callbacks haven't been defined
2279 $patterns = array($pagetype => $pagetype);
2280 $bits = explode('-', $pagetype);
2281 while (count($bits) > 0) {
2282 $pattern = implode('-', $bits) . '-*';
2283 $pagetypestringname = 'page-'.str_replace('*', 'x', $pattern);
2284 // guessing page type description
2285 if (get_string_manager()->string_exists($pagetypestringname, 'pagetype')) {
2286 $patterns[$pattern] = get_string($pagetypestringname, 'pagetype');
2288 $patterns[$pattern] = $pattern;
2292 $patterns['*'] = get_string('page-x', 'pagetype');
2297 * Generates the page type list for the my moodle page
2299 * @param string $pagetype
2300 * @param stdClass $parentcontext
2301 * @param stdClass $currentcontext
2304 function my_page_type_list($pagetype, $parentcontext = null, $currentcontext = null) {
2305 return array('my-index' => get_string('page-my-index', 'pagetype'));
2309 * Generates the page type list for a module by either locating and using the modules callback
2310 * or by generating a default list.
2312 * @param string $pagetype
2313 * @param stdClass $parentcontext
2314 * @param stdClass $currentcontext
2317 function mod_page_type_list($pagetype, $parentcontext = null, $currentcontext = null) {
2318 $patterns = plugin_page_type_list($pagetype, $parentcontext, $currentcontext);
2319 if (empty($patterns)) {
2320 // if modules don't have callbacks
2321 // generate two default page type patterns for modules only
2322 $bits = explode('-', $pagetype);
2323 $patterns = array($pagetype => $pagetype);
2324 if ($bits[2] == 'view') {
2325 $patterns['mod-*-view'] = get_string('page-mod-x-view', 'pagetype');
2326 } else if ($bits[2] == 'index') {
2327 $patterns['mod-*-index'] = get_string('page-mod-x-index', 'pagetype');
2332 /// Functions update the blocks if required by the request parameters ==========
2335 * Return a {@link block_contents} representing the add a new block UI, if
2336 * this user is allowed to see it.
2338 * @return block_contents an appropriate block_contents, or null if the user
2339 * cannot add any blocks here.
2341 function block_add_block_ui($page, $output) {
2342 global $CFG, $OUTPUT;
2343 if (!$page->user_is_editing() ||
!$page->user_can_edit_blocks()) {
2347 $bc = new block_contents();
2348 $bc->title
= get_string('addblock');
2349 $bc->add_class('block_adminblock');
2350 $bc->attributes
['data-block'] = 'adminblock';
2352 $missingblocks = $page->blocks
->get_addable_blocks();
2353 if (empty($missingblocks)) {
2354 $bc->content
= get_string('noblockstoaddhere');
2359 foreach ($missingblocks as $block) {
2360 $menu[$block->name
] = $block->title
;
2363 $actionurl = new moodle_url($page->url
, array('sesskey'=>sesskey()));
2364 $select = new single_select($actionurl, 'bui_addblock', $menu, null, array(''=>get_string('adddots')), 'add_block');
2365 $select->set_label(get_string('addblock'), array('class'=>'accesshide'));
2366 $bc->content
= $OUTPUT->render($select);
2371 * Actually delete from the database any blocks that are currently on this page,
2372 * but which should not be there according to blocks_name_allowed_in_format.
2374 * @todo Write/Fix this function. Currently returns immediately
2377 function blocks_remove_inappropriate($course) {
2381 $blockmanager = blocks_get_by_page($page);
2383 if (empty($blockmanager)) {
2387 if (($pageformat = $page->pagetype) == NULL) {
2391 foreach($blockmanager as $region) {
2392 foreach($region as $instance) {
2393 $block = blocks_get_record($instance->blockid);
2394 if(!blocks_name_allowed_in_format($block->name, $pageformat)) {
2395 blocks_delete_instance($instance->instance);
2402 * Check that a given name is in a permittable format
2404 * @param string $name
2405 * @param string $pageformat
2408 function blocks_name_allowed_in_format($name, $pageformat) {
2411 if (!$bi = block_instance($name)) {
2415 $formats = $bi->applicable_formats();
2419 foreach ($formats as $format => $allowed) {
2420 $formatregex = '/^'.str_replace('*', '[^-]*', $format).'.*$/';
2421 $depth = substr_count($format, '-');
2422 if (preg_match($formatregex, $pageformat) && $depth > $maxdepth) {
2427 if ($accept === NULL) {
2428 $accept = !empty($formats['all']);
2434 * Delete a block, and associated data.
2436 * @param object $instance a row from the block_instances table
2437 * @param bool $nolongerused legacy parameter. Not used, but kept for backwards compatibility.
2438 * @param bool $skipblockstables for internal use only. Makes @see blocks_delete_all_for_context() more efficient.
2440 function blocks_delete_instance($instance, $nolongerused = false, $skipblockstables = false) {
2443 // Allow plugins to use this block before we completely delete it.
2444 if ($pluginsfunction = get_plugins_with_function('pre_block_delete')) {
2445 foreach ($pluginsfunction as $plugintype => $plugins) {
2446 foreach ($plugins as $pluginfunction) {
2447 $pluginfunction($instance);
2452 if ($block = block_instance($instance->blockname
, $instance)) {
2453 $block->instance_delete();
2455 context_helper
::delete_instance(CONTEXT_BLOCK
, $instance->id
);
2457 if (!$skipblockstables) {
2458 $DB->delete_records('block_positions', array('blockinstanceid' => $instance->id
));
2459 $DB->delete_records('block_instances', array('id' => $instance->id
));
2460 $DB->delete_records_list('user_preferences', 'name', array('block'.$instance->id
.'hidden','docked_block_instance_'.$instance->id
));
2465 * Delete multiple blocks at once.
2467 * @param array $instanceids A list of block instance ID.
2469 function blocks_delete_instances($instanceids) {
2473 $count = count($instanceids);
2474 $chunks = [$instanceids];
2475 if ($count > $limit) {
2476 $chunks = array_chunk($instanceids, $limit);
2479 // Perform deletion for each chunk.
2480 foreach ($chunks as $chunk) {
2481 $instances = $DB->get_recordset_list('block_instances', 'id', $chunk);
2482 foreach ($instances as $instance) {
2483 blocks_delete_instance($instance, false, true);
2485 $instances->close();
2487 $DB->delete_records_list('block_positions', 'blockinstanceid', $chunk);
2488 $DB->delete_records_list('block_instances', 'id', $chunk);
2490 $preferences = array();
2491 foreach ($chunk as $instanceid) {
2492 $preferences[] = 'block' . $instanceid . 'hidden';
2493 $preferences[] = 'docked_block_instance_' . $instanceid;
2495 $DB->delete_records_list('user_preferences', 'name', $preferences);
2500 * Delete all the blocks that belong to a particular context.
2502 * @param int $contextid the context id.
2504 function blocks_delete_all_for_context($contextid) {
2506 $instances = $DB->get_recordset('block_instances', array('parentcontextid' => $contextid));
2507 foreach ($instances as $instance) {
2508 blocks_delete_instance($instance, true);
2510 $instances->close();
2511 $DB->delete_records('block_instances', array('parentcontextid' => $contextid));
2512 $DB->delete_records('block_positions', array('contextid' => $contextid));
2516 * Set a block to be visible or hidden on a particular page.
2518 * @param object $instance a row from the block_instances, preferably LEFT JOINed with the
2519 * block_positions table as return by block_manager.
2520 * @param moodle_page $page the back to set the visibility with respect to.
2521 * @param integer $newvisibility 1 for visible, 0 for hidden.
2523 function blocks_set_visibility($instance, $page, $newvisibility) {
2525 if (!empty($instance->blockpositionid
)) {
2526 // Already have local information on this page.
2527 $DB->set_field('block_positions', 'visible', $newvisibility, array('id' => $instance->blockpositionid
));
2531 // Create a new block_positions record.
2533 $bp->blockinstanceid
= $instance->id
;
2534 $bp->contextid
= $page->context
->id
;
2535 $bp->pagetype
= $page->pagetype
;
2536 if ($page->subpage
) {
2537 $bp->subpage
= $page->subpage
;
2539 $bp->visible
= $newvisibility;
2540 $bp->region
= $instance->defaultregion
;
2541 $bp->weight
= $instance->defaultweight
;
2542 $DB->insert_record('block_positions', $bp);
2546 * Get the block record for a particular blockid - that is, a particular type os block.
2548 * @param $int blockid block type id. If null, an array of all block types is returned.
2549 * @param bool $notusedanymore No longer used.
2550 * @return array|object row from block table, or all rows.
2552 function blocks_get_record($blockid = NULL, $notusedanymore = false) {
2554 $blocks = $PAGE->blocks
->get_installed_blocks();
2555 if ($blockid === NULL) {
2557 } else if (isset($blocks[$blockid])) {
2558 return $blocks[$blockid];
2565 * Find a given block by its blockid within a provide array
2567 * @param int $blockid
2568 * @param array $blocksarray
2569 * @return bool|object Instance if found else false
2571 function blocks_find_block($blockid, $blocksarray) {
2572 if (empty($blocksarray)) {
2575 foreach($blocksarray as $blockgroup) {
2576 if (empty($blockgroup)) {
2579 foreach($blockgroup as $instance) {
2580 if($instance->blockid
== $blockid) {
2588 // Functions for programatically adding default blocks to pages ================
2591 * Parse a list of default blocks. See config-dist for a description of the format.
2593 * @param string $blocksstr Determines the starting point that the blocks are added in the region.
2594 * @return array the parsed list of default blocks
2596 function blocks_parse_default_blocks_list($blocksstr) {
2598 $bits = explode(':', $blocksstr);
2599 if (!empty($bits)) {
2600 $leftbits = trim(array_shift($bits));
2601 if ($leftbits != '') {
2602 $blocks[BLOCK_POS_LEFT
] = explode(',', $leftbits);
2605 if (!empty($bits)) {
2606 $rightbits = trim(array_shift($bits));
2607 if ($rightbits != '') {
2608 $blocks[BLOCK_POS_RIGHT
] = explode(',', $rightbits);
2615 * @return array the blocks that should be added to the site course by default.
2617 function blocks_get_default_site_course_blocks() {
2620 if (isset($CFG->defaultblocks_site
)) {
2621 return blocks_parse_default_blocks_list($CFG->defaultblocks_site
);
2624 BLOCK_POS_LEFT
=> array(),
2625 BLOCK_POS_RIGHT
=> array()
2631 * Add the default blocks to a course.
2633 * @param object $course a course object.
2635 function blocks_add_default_course_blocks($course) {
2638 if (isset($CFG->defaultblocks_override
)) {
2639 $blocknames = blocks_parse_default_blocks_list($CFG->defaultblocks_override
);
2641 } else if ($course->id
== SITEID
) {
2642 $blocknames = blocks_get_default_site_course_blocks();
2644 } else if (isset($CFG->{'defaultblocks_' . $course->format
})) {
2645 $blocknames = blocks_parse_default_blocks_list($CFG->{'defaultblocks_' . $course->format
});
2648 require_once($CFG->dirroot
. '/course/lib.php');
2649 $blocknames = course_get_format($course)->get_default_blocks();
2653 if ($course->id
== SITEID
) {
2654 $pagetypepattern = 'site-index';
2656 $pagetypepattern = 'course-view-*';
2658 $page = new moodle_page();
2659 $page->set_course($course);
2660 $page->blocks
->add_blocks($blocknames, $pagetypepattern);
2664 * Add the default system-context blocks. E.g. the admin tree.
2666 function blocks_add_default_system_blocks() {
2669 $page = new moodle_page();
2670 $page->set_context(context_system
::instance());
2671 // We don't add blocks required by the theme, they will be auto-created.
2672 $page->blocks
->add_blocks(array(BLOCK_POS_LEFT
=> array('admin_bookmarks')), 'admin-*', null, null, 2);
2674 if ($defaultmypage = $DB->get_record('my_pages', array('userid' => null, 'name' => '__default', 'private' => 1))) {
2675 $subpagepattern = $defaultmypage->id
;
2677 $subpagepattern = null;
2680 if ($defaultmycoursespage = $DB->get_record('my_pages', array('userid' => null, 'name' => '__courses', 'private' => 0))) {
2681 $mycoursesubpagepattern = $defaultmycoursespage->id
;
2683 $mycoursesubpagepattern = null;
2686 $page->blocks
->add_blocks([
2687 BLOCK_POS_RIGHT
=> [
2688 'recentlyaccesseditems',
2698 $page->blocks
->add_blocks([
2703 $mycoursesubpagepattern