2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
18 * Blog Menu Block page.
20 * @package block_blog_menu
21 * @copyright 2009 Nicolas Connault
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') ||
die();
28 * The blog menu block class
30 class block_blog_menu
extends block_base
{
33 $this->title
= get_string('pluginname', 'block_blog_menu');
36 function instance_allow_multiple() {
40 function has_config() {
44 function applicable_formats() {
45 return array('all' => true, 'my' => false, 'tag' => false);
48 function instance_allow_config() {
52 function get_content() {
55 // detect if blog enabled
56 if ($this->content
!== NULL) {
57 return $this->content
;
60 if (empty($CFG->enableblogs
)) {
61 $this->content
= new stdClass();
62 $this->content
->text
= '';
63 if ($this->page
->user_is_editing()) {
64 $this->content
->text
= get_string('blogdisable', 'blog');
66 return $this->content
;
68 } else if ($CFG->bloglevel
< BLOG_GLOBAL_LEVEL
and (!isloggedin() or isguestuser())) {
69 $this->content
= new stdClass();
70 $this->content
->text
= '';
71 return $this->content
;
74 // require necessary libs and get content
75 require_once($CFG->dirroot
.'/blog/lib.php');
78 $this->content
= new stdClass();
80 $options = blog_get_all_options($this->page
);
81 if (count($options) == 0) {
82 $this->content
->text
= '';
83 return $this->content
;
86 // Iterate the option types
88 foreach ($options as $types) {
89 foreach ($types as $link) {
90 $menulist[] = html_writer
::link($link['link'], $link['string']);
92 $menulist[] = '<hr />';
94 // Remove the last element (will be an HR)
96 // Display the content as a list
97 $this->content
->text
= html_writer
::alist($menulist, array('class'=>'list'));
99 // Prepare the footer for this block
100 if (has_capability('moodle/blog:search', context_system
::instance())) {
103 'action' => new moodle_url('/blog/index.php'),
104 'inputname' => 'search',
105 'searchstring' => get_string('search', 'admin'),
106 'extraclasses' => 'mt-3'
108 $this->content
->footer
= $OUTPUT->render_from_template('core/search_input', $data);
110 // No footer to display
111 $this->content
->footer
= '';
114 // Return the content object
115 return $this->content
;
119 * Returns the role that best describes the blog menu block.
123 public function get_aria_role() {
128 * This block shouldn't be added to a page if the blogs advanced feature is disabled.
130 * @param moodle_page $page
133 public function can_block_be_added(moodle_page
$page): bool {
136 return $CFG->enableblogs
;