芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/blocks/recentlyaccesseditems/block_recentlyaccesseditems.php
. /** * Class definition for the Recently accessed items block. * * @package block_recentlyaccesseditems * @copyright 2018 Victor Deniz
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Recently accessed items block class. * * @package block_recentlyaccesseditems * @copyright Victor Deniz
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class block_recentlyaccesseditems extends block_base { /** * Initialize class member variables */ public function init() { $this->title = get_string('pluginname', 'block_recentlyaccesseditems'); } /** * Returns the contents. * * @return stdClass contents of block */ public function get_content() { if (isset($this->content)) { return $this->content; } $renderable = new block_recentlyaccesseditems\output\main(); $renderer = $this->page->get_renderer('block_recentlyaccesseditems'); $this->content = new stdClass(); $this->content->text = $renderer->render($renderable); $this->content->footer = ''; return $this->content; } /** * Locations where block can be displayed. * * @return array */ public function applicable_formats() { return array('my' => true); } }