1 |
efrain |
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 |
* Class definition for the Recently accessed items block.
|
|
|
18 |
*
|
|
|
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
|
|
|
22 |
*/
|
|
|
23 |
defined('MOODLE_INTERNAL') || die();
|
|
|
24 |
/**
|
|
|
25 |
* Recently accessed items block class.
|
|
|
26 |
*
|
|
|
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
|
|
|
30 |
*/
|
|
|
31 |
class block_recentlyaccesseditems extends block_base {
|
|
|
32 |
/**
|
|
|
33 |
* Initialize class member variables
|
|
|
34 |
*/
|
|
|
35 |
public function init() {
|
|
|
36 |
$this->title = get_string('pluginname', 'block_recentlyaccesseditems');
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
/**
|
|
|
40 |
* Returns the contents.
|
|
|
41 |
*
|
|
|
42 |
* @return stdClass contents of block
|
|
|
43 |
*/
|
|
|
44 |
public function get_content() {
|
|
|
45 |
if (isset($this->content)) {
|
|
|
46 |
return $this->content;
|
|
|
47 |
}
|
|
|
48 |
$renderable = new block_recentlyaccesseditems\output\main();
|
|
|
49 |
$renderer = $this->page->get_renderer('block_recentlyaccesseditems');
|
|
|
50 |
|
|
|
51 |
$this->content = new stdClass();
|
|
|
52 |
$this->content->text = $renderer->render($renderable);
|
|
|
53 |
$this->content->footer = '';
|
|
|
54 |
return $this->content;
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
/**
|
|
|
58 |
* Locations where block can be displayed.
|
|
|
59 |
*
|
|
|
60 |
* @return array
|
|
|
61 |
*/
|
|
|
62 |
public function applicable_formats() {
|
|
|
63 |
return array('my' => true);
|
|
|
64 |
}
|
|
|
65 |
}
|