256 |
ariadna |
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.
|
|
|
13 |
//
|
|
|
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/>.
|
|
|
16 |
|
|
|
17 |
namespace theme_universe\output;
|
|
|
18 |
|
|
|
19 |
use html_writer;
|
|
|
20 |
use stdClass;
|
|
|
21 |
use moodle_url;
|
|
|
22 |
use context_course;
|
|
|
23 |
use context_system;
|
|
|
24 |
use core_course_list_element;
|
|
|
25 |
use custom_menu;
|
|
|
26 |
use action_menu_filler;
|
|
|
27 |
use action_menu_link_secondary;
|
|
|
28 |
use action_menu;
|
|
|
29 |
use action_link;
|
|
|
30 |
use core_text;
|
|
|
31 |
use coding_exception;
|
|
|
32 |
use navigation_node;
|
|
|
33 |
use context_header;
|
|
|
34 |
use pix_icon;
|
|
|
35 |
use renderer_base;
|
|
|
36 |
use theme_config;
|
|
|
37 |
use get_string;
|
|
|
38 |
use core_course_category;
|
|
|
39 |
use theme_universe\util\user;
|
|
|
40 |
use theme_universe\util\course;
|
|
|
41 |
|
|
|
42 |
require_once($CFG->dirroot . '/cesa/statics_blocks.php'); // Incluimos StaticsBlocks
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
/**
|
|
|
46 |
* Renderers to align Moodle's HTML with that expected by Bootstrap
|
|
|
47 |
*
|
|
|
48 |
* @package theme_universe
|
|
|
49 |
* @copyright 2023 Marcin Czaja (https://rosea.io)
|
|
|
50 |
* @license Commercial https://themeforest.net/licenses
|
|
|
51 |
*/
|
|
|
52 |
class core_renderer extends \core_renderer
|
|
|
53 |
{
|
|
|
54 |
|
|
|
55 |
public function render_statics_blocks($userid = null)
|
|
|
56 |
{
|
|
|
57 |
global $USER;
|
|
|
58 |
|
|
|
59 |
if (!$userid) {
|
|
|
60 |
$userid = $USER->id;
|
|
|
61 |
}
|
|
|
62 |
|
|
|
63 |
$html = null;
|
|
|
64 |
|
|
|
65 |
// Instanciamos StaticsBlocks para renderizar los bloques
|
|
|
66 |
$statics_blocks = new \StaticsBlocks($this->page->title);
|
|
|
67 |
$blocks = $statics_blocks->renderBlocks();
|
|
|
68 |
|
|
|
69 |
return $blocks;
|
|
|
70 |
}
|
|
|
71 |
}
|