MDL-68261 report_configlog: Log changes from admin/cli/cfg.php
[moodle.git] / blocks / recentlyaccesseditems / block_recentlyaccesseditems.php
blobd16c303bfc0d6d7e85ca9f1f72fcdf6fa32c6ba5
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/>.
16 /**
17 * Class definition for the Recently accessed items block.
19 * @package block_recentlyaccesseditems
20 * @copyright 2018 Victor Deniz <victor@moodle.com>
21 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 defined('MOODLE_INTERNAL') || die();
24 /**
25 * Recently accessed items block class.
27 * @package block_recentlyaccesseditems
28 * @copyright Victor Deniz <victor@moodle.com>
29 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31 class block_recentlyaccesseditems extends block_base {
32 /**
33 * Initialize class member variables
35 public function init() {
36 $this->title = get_string('pluginname', 'block_recentlyaccesseditems');
39 /**
40 * Returns the contents.
42 * @return stdClass contents of block
44 public function get_content() {
45 if (isset($this->content)) {
46 return $this->content;
48 $renderable = new block_recentlyaccesseditems\output\main();
49 $renderer = $this->page->get_renderer('block_recentlyaccesseditems');
51 $this->content = new stdClass();
52 $this->content->text = $renderer->render($renderable);
53 $this->content->footer = '';
54 return $this->content;
57 /**
58 * Locations where block can be displayed.
60 * @return array
62 public function applicable_formats() {
63 return array('my' => true);