mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
50 lines
2 KiB
PHP
50 lines
2 KiB
PHP
<?php
|
|
|
|
class block_search_forums extends block_base {
|
|
function init() {
|
|
$this->title = get_string('pluginname', 'block_search_forums');
|
|
$this->version = 2007101509;
|
|
}
|
|
|
|
function get_content() {
|
|
global $CFG, $OUTPUT;
|
|
|
|
if($this->content !== NULL) {
|
|
return $this->content;
|
|
}
|
|
|
|
$this->content = new stdClass;
|
|
$this->content->footer = '';
|
|
|
|
if (empty($this->instance)) {
|
|
$this->content->text = '';
|
|
return $this->content;
|
|
}
|
|
|
|
$advancedsearch = get_string('advancedsearch', 'block_search_forums');
|
|
|
|
$search = get_string('search');
|
|
|
|
//Accessibility: replaced <input value=" />" type="submit"> with configurable text/'silent' character.
|
|
// Theme config, $CFG->block_search_button = get_arrow_right() .'<span class="accesshide">'.get_string('search').'</span>';
|
|
$button = (isset($CFG->block_search_button)) ? $CFG->block_search_button : get_string('go');
|
|
|
|
$this->content->text = '<div class="searchform">';
|
|
$this->content->text .= '<form action="'.$CFG->wwwroot.'/mod/forum/search.php" style="display:inline"><fieldset class="invisiblefieldset">';
|
|
$this->content->text .= '<input name="id" type="hidden" value="'.$this->page->course->id.'" />'; // course
|
|
$this->content->text .= '<label class="accesshide" for="searchform_search">'.$search.'</label>'.
|
|
'<input id="searchform_search" name="search" type="text" size="16" />';
|
|
$this->content->text .= '<button id="searchform_button" type="submit" title="'.$search.'">'.$button.'</button><br />';
|
|
$this->content->text .= '<a href="'.$CFG->wwwroot.'/mod/forum/search.php?id='.$this->page->course->id.'">'.$advancedsearch.'</a>';
|
|
$this->content->text .= $OUTPUT->old_help_icon('search', $advancedsearch);
|
|
$this->content->text .= '</fieldset></form></div>';
|
|
|
|
return $this->content;
|
|
}
|
|
|
|
function applicable_formats() {
|
|
return array('site' => true, 'course' => true);
|
|
}
|
|
}
|
|
|
|
|