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 * Renderer for outputting the weeks course format.
20 * @package format_weeks
21 * @copyright 2012 Dan Poltawski
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') || die();
28 require_once($CFG->dirroot.'/course/format/renderer.php');
29 require_once($CFG->dirroot.'/course/format/weeks/lib.php');
33 * Basic renderer for weeks format.
35 * @copyright 2012 Dan Poltawski
36 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 class format_weeks_renderer extends format_section_renderer_base {
40 * Generate the starting container html for a list of sections
41 * @return string HTML to output.
43 protected function start_section_list() {
44 return html_writer::start_tag('ul', array('class' => 'weeks'));
48 * Generate the closing container html for a list of sections
49 * @return string HTML to output.
51 protected function end_section_list() {
52 return html_writer::end_tag('ul');
56 * Generate the title for this section page
57 * @return string the page title
59 protected function page_title() {
60 return get_string('weeklyoutline');
64 * Is the section passed in the current section?
66 * @param stdClass $section The course_section entry from the DB
67 * @param stdClass $course The course entry from DB
68 * @return bool true if the section is current
70 protected function is_section_current($section, $course) {
71 if ($section->section < 1) {
76 $dates = format_weeks_get_section_dates($section, $course);
78 return (($timenow >= $dates->start) && ($timenow < $dates->end));