91 lines
3.1 KiB
PHP
91 lines
3.1 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* Course renderer.
|
|
*
|
|
* @package theme_bootstrapbase
|
|
* @copyright 2016 Frédéric Massart - FMCorz.net
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
namespace theme_bootstrapbase\output\core;
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
use moodle_url;
|
|
use \html_writer as html_writer;
|
|
|
|
require_once($CFG->dirroot . '/course/renderer.php');
|
|
|
|
/**
|
|
* Course renderer class.
|
|
*
|
|
* @package theme_bootstrapbase
|
|
* @copyright 2016 Frédéric Massart - FMCorz.net
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class course_renderer extends \core_course_renderer {
|
|
|
|
/**
|
|
* Renders html to display a course search form
|
|
*
|
|
* @param string $value default value to populate the search field
|
|
* @param string $format display format - 'plain' (default), 'short' or 'navbar'
|
|
* @return string
|
|
*/
|
|
function course_search_form($value = '', $format = 'plain') {
|
|
static $count = 0;
|
|
$formid = 'coursesearch';
|
|
if ((++$count) > 1) {
|
|
$formid .= $count;
|
|
}
|
|
|
|
switch ($format) {
|
|
case 'navbar' :
|
|
$formid = 'coursesearchnavbar';
|
|
$inputid = 'navsearchbox';
|
|
$inputsize = 20;
|
|
break;
|
|
case 'short' :
|
|
$inputid = 'shortsearchbox';
|
|
$inputsize = 12;
|
|
break;
|
|
default :
|
|
$inputid = 'coursesearchbox';
|
|
$inputsize = 30;
|
|
}
|
|
|
|
$strsearchcourses= get_string("searchcourses");
|
|
$searchurl = new moodle_url('/course/search.php');
|
|
|
|
$output = \html_writer::start_tag('form', array('id' => $formid, 'action' => $searchurl, 'method' => 'get'));
|
|
$output .= \html_writer::start_tag('fieldset', array('class' => 'coursesearchbox invisiblefieldset'));
|
|
$output .= \html_writer::tag('label', $strsearchcourses.': ', array('for' => $inputid));
|
|
$output .= \html_writer::empty_tag('input', array('type' => 'text', 'id' => $inputid,
|
|
'size' => $inputsize, 'name' => 'search', 'value' => s($value)));
|
|
$output .= \html_writer::empty_tag('input', array('type' => 'submit',
|
|
'value' => get_string('go')));
|
|
$output .= \html_writer::end_tag('fieldset');
|
|
if ($format != 'navbar') {
|
|
$output .= $this->output->help_icon("coursesearch", "core");
|
|
}
|
|
$output .= \html_writer::end_tag('form');
|
|
|
|
return $output;
|
|
}
|
|
|
|
}
|