mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
114 lines
3.7 KiB
PHP
Executable File
114 lines
3.7 KiB
PHP
Executable File
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
/**
|
|
* Blog Menu Block page.
|
|
*
|
|
* @package moodlecore
|
|
* @subpackage blog
|
|
* @copyright 2009 Nicolas Connault
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
/**
|
|
* Require the blog lib file, several useful functions in there
|
|
*/
|
|
require_once($CFG->dirroot .'/blog/lib.php');
|
|
|
|
/**
|
|
* The blog menu block class
|
|
*/
|
|
class block_blog_menu extends block_base {
|
|
|
|
function init() {
|
|
$this->title = get_string('pluginname', 'block_blog_menu');
|
|
$this->version = 2009071700;
|
|
}
|
|
|
|
function instance_allow_multiple() {
|
|
return true;
|
|
}
|
|
|
|
function has_config() {
|
|
return false;
|
|
}
|
|
|
|
function applicable_formats() {
|
|
return array('all' => true, 'my' => false, 'tag' => false);
|
|
}
|
|
|
|
function instance_allow_config() {
|
|
return true;
|
|
}
|
|
|
|
function get_content() {
|
|
|
|
// Check if we've already generated content
|
|
if (!empty($this->content)) {
|
|
return $this->content;
|
|
}
|
|
|
|
// Prep the content
|
|
$this->content = new stdClass;
|
|
|
|
/**
|
|
* Prepare the content for this block
|
|
*/
|
|
$options = blog_get_all_options($this->page);
|
|
if (count($options)==0) {
|
|
// Don't display menu block if block is set at site level, and user is not logged in
|
|
$this->content->text = '';
|
|
if ($this->page->user_is_editing()) {
|
|
// If editing is enabled show an informative message
|
|
$this->content->text = get_string('blogdisable', 'blog');
|
|
}
|
|
return $this->content;
|
|
}
|
|
|
|
// Iterate the option types
|
|
$menulist = array();
|
|
foreach ($options as $types) {
|
|
foreach ($types as $link) {
|
|
$menulist[] = html_writer::link($link['link'], $link['string']);
|
|
}
|
|
$menulist[] = '<hr />';
|
|
}
|
|
// Remove the last element (will be an HR)
|
|
array_pop($menulist);
|
|
// Display the content as a list
|
|
$this->content->text = html_writer::alist($menulist, array('class'=>'list'));
|
|
|
|
/**
|
|
* Prepare the footer for this block
|
|
*/
|
|
if (has_capability('moodle/blog:search', get_context_instance(CONTEXT_SYSTEM))) {
|
|
// Full-text search field
|
|
$form = html_writer::tag('label', get_string('search', 'admin'), array('for'=>'blogsearchquery', 'class'=>'accesshide'));
|
|
$form .= html_writer::empty_tag('input', array('id'=>'blogsearchquery', 'type'=>'text', 'name'=>'search'));
|
|
$form .= html_writer::empty_tag('input', array('type'=>'submit', 'value'=>get_string('search')));
|
|
$this->content->footer = html_writer::tag('form', html_writer::tag('div', $form), array('class'=>'blogsearchform', 'method'=>'get', 'action'=>new moodle_url('/blog/index.php')));
|
|
} else {
|
|
// No footer to display
|
|
$this->content->footer = '';
|
|
}
|
|
|
|
// Return the content object
|
|
return $this->content;
|
|
}
|
|
}
|