33d640281b62e8fb999e66aeac93ef216582bbb0
[moodle.git] / course / format / weeks / renderer.php
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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.
13 //
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/>.
17 /**
18  * Renderer for outputting the weeks course format.
19  *
20  * @package format_weeks
21  * @copyright 2012 Dan Poltawski
22  * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23  * @since Moodle 2.3
24  */
27 defined('MOODLE_INTERNAL') || die();
28 require_once($CFG->dirroot.'/course/format/renderer.php');
31 /**
32  * Basic renderer for weeks format.
33  *
34  * @copyright 2012 Dan Poltawski
35  * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36  */
37 class format_weeks_renderer extends format_section_renderer_base {
38     /**
39      * Generate the starting container html for a list of sections
40      * @return string HTML to output.
41      */
42     protected function start_section_list() {
43         return html_writer::start_tag('ul', array('class' => 'weeks'));
44     }
46     /**
47      * Generate the closing container html for a list of sections
48      * @return string HTML to output.
49      */
50     protected function end_section_list() {
51         return html_writer::end_tag('ul');
52     }
54     /**
55      * Generate the title for this section page
56      * @return string the page title
57      */
58     protected function page_title() {
59         return get_string('weeklyoutline');
60     }
61 }