faf2ea2250467b85ffa3e86f5208098e44402a34
[moodle.git] / course / renderer.php
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
18 /**
19  * Renderer for use with the course section and all the goodness that falls
20  * within it.
21  *
22  * This renderer should contain methods useful to courses, and categories.
23  *
24  * @package   moodlecore
25  * @copyright 2010 Sam Hemelryk
26  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27  */
29 /**
30  * The core course renderer
31  *
32  * Can be retrieved with the following:
33  * $renderer = $PAGE->get_renderer('core','course');
34  */
35 class core_course_renderer extends plugin_renderer_base {
37     /**
38      * A cache of strings
39      * @var stdClass
40      */
41     protected $strings;
43     /**
44      * Override the constructor so that we can initialise the string cache
45      *
46      * @param moodle_page $page
47      * @param string $target
48      */
49     public function __construct(moodle_page $page, $target) {
50         $this->strings = new stdClass;
51         parent::__construct($page, $target);
52     }
54     /**
55      * Renders course info box.
56      *
57      * @param stdClass $course
58      * @return string
59      */
60     public function course_info_box(stdClass $course) {
61         global $CFG;
63         $context = context_course::instance($course->id);
65         $content = '';
66         $content .= $this->output->box_start('generalbox info');
68         $summary = file_rewrite_pluginfile_urls($course->summary, 'pluginfile.php', $context->id, 'course', 'summary', null);
69         $content .= format_text($summary, $course->summaryformat, array('overflowdiv'=>true), $course->id);
70         if (!empty($CFG->coursecontact)) {
71             $coursecontactroles = explode(',', $CFG->coursecontact);
72             foreach ($coursecontactroles as $roleid) {
73                 if ($users = get_role_users($roleid, $context, true)) {
74                     foreach ($users as $teacher) {
75                         $role = new stdClass();
76                         $role->id = $teacher->roleid;
77                         $role->name = $teacher->rolename;
78                         $role->shortname = $teacher->roleshortname;
79                         $role->coursealias = $teacher->rolecoursealias;
80                         $fullname = fullname($teacher, has_capability('moodle/site:viewfullnames', $context));
81                         $namesarray[] = role_get_name($role, $context).': <a href="'.$CFG->wwwroot.'/user/view.php?id='.
82                             $teacher->id.'&amp;course='.SITEID.'">'.$fullname.'</a>';
83                     }
84                 }
85             }
87             if (!empty($namesarray)) {
88                 $content .= "<ul class=\"teachers\">\n<li>";
89                 $content .= implode('</li><li>', $namesarray);
90                 $content .= "</li></ul>";
91             }
92         }
94         $content .= $this->output->box_end();
96         return $content;
97     }
99     /**
100      * Renderers a structured array of courses and categories into a nice
101      * XHTML tree structure.
102      *
103      * This method was designed initially to display the front page course/category
104      * combo view. The structure can be retrieved by get_course_category_tree()
105      *
106      * @param array $structure
107      * @return string
108      */
109     public function course_category_tree(array $structure) {
110         $this->strings->summary = get_string('summary');
112         // Generate an id and the required JS call to make this a nice widget
113         $id = html_writer::random_id('course_category_tree');
114         $this->page->requires->js_init_call('M.util.init_toggle_class_on_click', array($id, '.category.with_children .category_label', 'collapsed', '.category.with_children'));
116         // Start content generation
117         $content = html_writer::start_tag('div', array('class'=>'course_category_tree', 'id'=>$id));
118         foreach ($structure as $category) {
119             $content .= $this->course_category_tree_category($category);
120         }
121         $content .= html_writer::start_tag('div', array('class'=>'controls'));
122         $content .= html_writer::tag('div', get_string('collapseall'), array('class'=>'addtoall expandall'));
123         $content .= html_writer::tag('div', get_string('expandall'), array('class'=>'removefromall collapseall'));
124         $content .= html_writer::end_tag('div');
125         $content .= html_writer::end_tag('div');
127         // Return the course category tree HTML
128         return $content;
129     }
131     /**
132      * Renderers a category for use with course_category_tree
133      *
134      * @param array $category
135      * @param int $depth
136      * @return string
137      */
138     protected function course_category_tree_category(stdClass $category, $depth=1) {
139         $content = '';
140         $hassubcategories = (isset($category->categories) && count($category->categories)>0);
141         $hascourses = (isset($category->courses) && count($category->courses)>0);
142         $classes = array('category');
143         if ($category->parent != 0) {
144             $classes[] = 'subcategory';
145         }
146         if (empty($category->visible)) {
147             $classes[] = 'dimmed_category';
148         }
149         if ($hassubcategories || $hascourses) {
150             $classes[] = 'with_children';
151             if ($depth > 1) {
152                 $classes[] = 'collapsed';
153             }
154         }
155         $categoryname = format_string($category->name, true, array('context' => context_coursecat::instance($category->id)));
157         $content .= html_writer::start_tag('div', array('class'=>join(' ', $classes)));
158         $content .= html_writer::start_tag('div', array('class'=>'category_label'));
159         $content .= html_writer::link(new moodle_url('/course/category.php', array('id'=>$category->id)), $categoryname, array('class'=>'category_link'));
160         $content .= html_writer::end_tag('div');
161         if ($hassubcategories) {
162             $content .= html_writer::start_tag('div', array('class'=>'subcategories'));
163             foreach ($category->categories as $subcategory) {
164                 $content .= $this->course_category_tree_category($subcategory, $depth+1);
165             }
166             $content .= html_writer::end_tag('div');
167         }
168         if ($hascourses) {
169             $content .= html_writer::start_tag('div', array('class'=>'courses'));
170             $coursecount = 0;
171             $strinfo = new lang_string('info');
172             foreach ($category->courses as $course) {
173                 $classes = array('course');
174                 $linkclass = 'course_link';
175                 if (!$course->visible) {
176                     $linkclass .= ' dimmed';
177                 }
178                 $coursecount ++;
179                 $classes[] = ($coursecount%2)?'odd':'even';
180                 $content .= html_writer::start_tag('div', array('class'=>join(' ', $classes)));
181                 $content .= html_writer::link(new moodle_url('/course/view.php', array('id'=>$course->id)), format_string($course->fullname), array('class'=>$linkclass));
182                 $content .= html_writer::start_tag('div', array('class'=>'course_info clearfix'));
184                 // print enrol info
185                 if ($icons = enrol_get_course_info_icons($course)) {
186                     foreach ($icons as $pix_icon) {
187                         $content .= $this->render($pix_icon);
188                     }
189                 }
191                 if ($course->summary) {
192                     $url = new moodle_url('/course/info.php', array('id' => $course->id));
193                     $image = html_writer::empty_tag('img', array('src'=>$this->output->pix_url('i/info'), 'alt'=>$this->strings->summary));
194                     $content .= $this->action_link($url, $image, new popup_action('click', $url, 'courseinfo'), array('title' => $this->strings->summary));
195                 }
196                 $content .= html_writer::end_tag('div');
197                 $content .= html_writer::end_tag('div');
198             }
199             $content .= html_writer::end_tag('div');
200         }
201         $content .= html_writer::end_tag('div');
202         return $content;
203     }
205     /**
206      * Build the HTML for the module chooser javascript popup
207      *
208      * @param array $modules A set of modules as returned form @see
209      * get_module_metadata
210      * @param object $course The course that will be displayed
211      * @return string The composed HTML for the module
212      */
213     public function course_modchooser($modules, $course) {
214         global $OUTPUT;
216         // Add the header
217         $header = html_writer::tag('div', get_string('addresourceoractivity', 'moodle'),
218                 array('class' => 'hd choosertitle'));
220         $formcontent = html_writer::start_tag('form', array('action' => new moodle_url('/course/jumpto.php'),
221                 'id' => 'chooserform', 'method' => 'post'));
222         $formcontent .= html_writer::start_tag('div', array('id' => 'typeformdiv'));
223         $formcontent .= html_writer::tag('input', '', array('type' => 'hidden', 'id' => 'course',
224                 'name' => 'course', 'value' => $course->id));
225         $formcontent .= html_writer::tag('input', '',
226                 array('type' => 'hidden', 'class' => 'jump', 'name' => 'jump', 'value' => ''));
227         $formcontent .= html_writer::tag('input', '', array('type' => 'hidden', 'name' => 'sesskey',
228                 'value' => sesskey()));
229         $formcontent .= html_writer::end_tag('div');
231         // Put everything into one tag 'options'
232         $formcontent .= html_writer::start_tag('div', array('class' => 'options'));
233         $formcontent .= html_writer::tag('div', get_string('selectmoduletoviewhelp', 'moodle'),
234                 array('class' => 'instruction'));
235         // Put all options into one tag 'alloptions' to allow us to handle scrolling
236         $formcontent .= html_writer::start_tag('div', array('class' => 'alloptions'));
238          // Activities
239         $activities = array_filter($modules, function($mod) {
240             return ($mod->archetype !== MOD_ARCHETYPE_RESOURCE && $mod->archetype !== MOD_ARCHETYPE_SYSTEM);
241         });
242         if (count($activities)) {
243             $formcontent .= $this->course_modchooser_title('activities');
244             $formcontent .= $this->course_modchooser_module_types($activities);
245         }
247         // Resources
248         $resources = array_filter($modules, function($mod) {
249             return ($mod->archetype === MOD_ARCHETYPE_RESOURCE);
250         });
251         if (count($resources)) {
252             $formcontent .= $this->course_modchooser_title('resources');
253             $formcontent .= $this->course_modchooser_module_types($resources);
254         }
256         $formcontent .= html_writer::end_tag('div'); // modoptions
257         $formcontent .= html_writer::end_tag('div'); // types
259         $formcontent .= html_writer::start_tag('div', array('class' => 'submitbuttons'));
260         $formcontent .= html_writer::tag('input', '',
261                 array('type' => 'submit', 'name' => 'submitbutton', 'class' => 'submitbutton', 'value' => get_string('add')));
262         $formcontent .= html_writer::tag('input', '',
263                 array('type' => 'submit', 'name' => 'addcancel', 'class' => 'addcancel', 'value' => get_string('cancel')));
264         $formcontent .= html_writer::end_tag('div');
265         $formcontent .= html_writer::end_tag('form');
267         // Wrap the whole form in a div
268         $formcontent = html_writer::tag('div', $formcontent, array('id' => 'chooseform'));
270         // Put all of the content together
271         $content = $formcontent;
273         $content = html_writer::tag('div', $content, array('class' => 'choosercontainer'));
274         return $header . html_writer::tag('div', $content, array('class' => 'chooserdialoguebody'));
275     }
277     /**
278      * Build the HTML for a specified set of modules
279      *
280      * @param array $modules A set of modules as used by the
281      * course_modchooser_module function
282      * @return string The composed HTML for the module
283      */
284     protected function course_modchooser_module_types($modules) {
285         $return = '';
286         foreach ($modules as $module) {
287             if (!isset($module->types)) {
288                 $return .= $this->course_modchooser_module($module);
289             } else {
290                 $return .= $this->course_modchooser_module($module, array('nonoption'));
291                 foreach ($module->types as $type) {
292                     $return .= $this->course_modchooser_module($type, array('option', 'subtype'));
293                 }
294             }
295         }
296         return $return;
297     }
299     /**
300      * Return the HTML for the specified module adding any required classes
301      *
302      * @param object $module An object containing the title, and link. An
303      * icon, and help text may optionally be specified. If the module
304      * contains subtypes in the types option, then these will also be
305      * displayed.
306      * @param array $classes Additional classes to add to the encompassing
307      * div element
308      * @return string The composed HTML for the module
309      */
310     protected function course_modchooser_module($module, $classes = array('option')) {
311         $output = '';
312         $output .= html_writer::start_tag('div', array('class' => implode(' ', $classes)));
313         $output .= html_writer::start_tag('label', array('for' => 'module_' . $module->name));
314         if (!isset($module->types)) {
315             $output .= html_writer::tag('input', '', array('type' => 'radio',
316                     'name' => 'jumplink', 'id' => 'module_' . $module->name, 'value' => $module->link));
317         }
319         $output .= html_writer::start_tag('span', array('class' => 'modicon'));
320         if (isset($module->icon)) {
321             // Add an icon if we have one
322             $output .= $module->icon;
323         }
324         $output .= html_writer::end_tag('span');
326         $output .= html_writer::tag('span', $module->title, array('class' => 'typename'));
327         if (!isset($module->help)) {
328             // Add help if found
329             $module->help = get_string('nohelpforactivityorresource', 'moodle');
330         }
332         // Format the help text using markdown with the following options
333         $options = new stdClass();
334         $options->trusted = false;
335         $options->noclean = false;
336         $options->smiley = false;
337         $options->filter = false;
338         $options->para = true;
339         $options->newlines = false;
340         $options->overflowdiv = false;
341         $module->help = format_text($module->help, FORMAT_MARKDOWN, $options);
342         $output .= html_writer::tag('span', $module->help, array('class' => 'typesummary'));
343         $output .= html_writer::end_tag('label');
344         $output .= html_writer::end_tag('div');
346         return $output;
347     }
349     protected function course_modchooser_title($title, $identifier = null) {
350         $module = new stdClass();
351         $module->name = $title;
352         $module->types = array();
353         $module->title = get_string($title, $identifier);
354         $module->help = '';
355         return $this->course_modchooser_module($module, array('moduletypetitle'));
356     }
358     /**
359      * Renders HTML for displaying the sequence of course module editing buttons
360      *
361      * @see course_get_cm_edit_actions()
362      *
363      * @param array $actions array of action_link or pix_icon objects
364      * @return string
365      */
366     public function course_section_cm_edit_actions($actions) {
367         $output = html_writer::start_tag('span', array('class' => 'commands'));
368         foreach ($actions as $action) {
369             if ($action instanceof renderable) {
370                 $output .= $this->output->render($action);
371             } else {
372                 $output .= $action;
373             }
374         }
375         $output .= html_writer::end_tag('span');
376         return $output;
377     }