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())) {
101 // Full-text search field
102 $form = html_writer
::tag('label', get_string('search', 'admin'), array('for'=>'blogsearchquery', 'class'=>'accesshide'));
103 $form .= html_writer
::empty_tag('input', array('id'=>'blogsearchquery', 'type'=>'text', 'name'=>'search'));
104 $form .= html_writer
::empty_tag('input', array('type'=>'submit', 'value'=>get_string('search')));
105 $this->content
->footer
= html_writer
::tag('form', html_writer
::tag('div', $form), array('class'=>'blogsearchform', 'method'=>'get', 'action'=>new moodle_url('/blog/index.php')));
107 // No footer to display
108 $this->content
->footer
= '';
111 // Return the content object
112 return $this->content
;
116 * Returns the role that best describes the blog menu block.
120 public function get_aria_role() {