weekly release 5.0dev
[moodle.git] / blocks / blog_menu / block_blog_menu.php
blob8c9fb89e23f1747ba4df649607291a98fa526bc2
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/>.
17 /**
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();
27 /**
28 * The blog menu block class
30 class block_blog_menu extends block_base {
32 function init() {
33 $this->title = get_string('pluginname', 'block_blog_menu');
36 function instance_allow_multiple() {
37 return true;
40 function has_config() {
41 return false;
44 function applicable_formats() {
45 return array('all' => true, 'my' => false, 'tag' => false);
48 function instance_allow_config() {
49 return true;
52 function get_content() {
53 global $CFG, $OUTPUT;
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');
77 // Prep the content
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
87 $menulist = array();
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)
95 array_pop($menulist);
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())) {
102 $data = [
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);
109 } else {
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.
121 * @return string
123 public function get_aria_role() {
124 return 'navigation';
128 * This block shouldn't be added to a page if the blogs advanced feature is disabled.
130 * @param moodle_page $page
131 * @return bool
133 public function can_block_be_added(moodle_page $page): bool {
134 global $CFG;
136 return $CFG->enableblogs;