Merge branch 'MDL-80622-main' of https://github.com/roland04/moodle
[moodle.git] / blocks / lp / block_lp.php
blob895b3ef012f8bc7d8ffdb2471e24a9f08e0ec91a
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Block LP main file.
20 * @package block_lp
21 * @copyright 2016 Frédéric Massart - FMCorz.net
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') || die();
27 /**
28 * Block LP class.
30 * @package block_lp
31 * @copyright 2016 Frédéric Massart - FMCorz.net
32 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34 class block_lp extends block_base {
36 /**
37 * Applicable formats.
39 * @return array
41 public function applicable_formats() {
42 return array('site' => true, 'course' => true, 'my' => true);
45 /**
46 * Init.
48 * @return void
50 public function init() {
51 $this->title = get_string('pluginname', 'block_lp');
54 /**
55 * Get content.
57 * @return stdClass
59 public function get_content() {
60 if (isset($this->content)) {
61 return $this->content;
63 $this->content = new stdClass();
65 if (!get_config('core_competency', 'enabled')) {
66 return $this->content;
69 // Block needs a valid, non-guest user to be logged-in in order to display the user's learning plans.
70 if (isloggedin() && !isguestuser()) {
71 $summary = new \block_lp\output\summary();
72 if (!$summary->has_content()) {
73 return $this->content;
76 $renderer = $this->page->get_renderer('block_lp');
77 $this->content->text = $renderer->render($summary);
78 $this->content->footer = '';
81 return $this->content;
84 /**
85 * This block shouldn't be added to a page if the competencies advanced feature is disabled.
87 * @param moodle_page $page
88 * @return bool
90 public function can_block_be_added(moodle_page $page): bool {
91 return get_config('core_competency', 'enabled');