. /** * course_overview block rendrer * * @package block_course_overview * @copyright 2012 Adam Olley * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die; /** * Course_overview block rendrer * * @copyright 2012 Adam Olley * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class block_course_overview_renderer extends plugin_renderer_base { /** * Construct contents of course_overview block * * @param array $courses list of courses in sorted order * @param array $overviews list of course overviews * @return string html to be displayed in course_overview block */ public function course_overview($courses, $overviews) { $html = ''; $config = get_config('block_course_overview'); if ($config->showcategories != BLOCKS_COURSE_OVERVIEW_SHOWCATEGORIES_NONE) { global $CFG; require_once($CFG->libdir.'/coursecatlib.php'); } $ismovingcourse = false; $courseordernumber = 0; $maxcourses = count($courses); $userediting = false; // Intialise string/icon etc if user is editing and courses > 1 if ($this->page->user_is_editing() && (count($courses) > 1)) { $userediting = true; $this->page->requires->js_init_call('M.block_course_overview.add_handles'); // Check if course is moving $ismovingcourse = optional_param('movecourse', FALSE, PARAM_BOOL); $movingcourseid = optional_param('courseid', 0, PARAM_INT); } // Render first movehere icon. if ($ismovingcourse) { // Remove movecourse param from url. $this->page->ensure_param_not_in_url('movecourse'); // Show moving course notice, so user knows what is being moved. $html .= $this->output->box_start('notice'); $a = new stdClass(); $a->fullname = $courses[$movingcourseid]->fullname; $a->cancellink = html_writer::link($this->page->url, get_string('cancel')); $html .= get_string('movingcourse', 'block_course_overview', $a); $html .= $this->output->box_end(); $moveurl = new moodle_url('/blocks/course_overview/move.php', array('sesskey' => sesskey(), 'moveto' => 0, 'courseid' => $movingcourseid)); // Create move icon, so it can be used. $movetofirsticon = html_writer::empty_tag('img', array('src' => $this->output->pix_url('movehere'), 'alt' => get_string('movetofirst', 'block_course_overview', $courses[$movingcourseid]->fullname), 'title' => get_string('movehere'))); $moveurl = html_writer::link($moveurl, $movetofirsticon); $html .= html_writer::tag('div', $moveurl, array('class' => 'movehere')); } foreach ($courses as $key => $course) { // If moving course, then don't show course which needs to be moved. if ($ismovingcourse && ($course->id == $movingcourseid)) { continue; } $html .= $this->output->box_start('coursebox', "course-{$course->id}"); $html .= html_writer::start_tag('div', array('class' => 'course_title')); // If user is editing, then add move icons. if ($userediting && !$ismovingcourse) { $moveicon = html_writer::empty_tag('img', array('src' => $this->pix_url('t/move')->out(false), 'alt' => get_string('movecourse', 'block_course_overview', $course->fullname), 'title' => get_string('move'))); $moveurl = new moodle_url($this->page->url, array('sesskey' => sesskey(), 'movecourse' => 1, 'courseid' => $course->id)); $moveurl = html_writer::link($moveurl, $moveicon); $html .= html_writer::tag('div', $moveurl, array('class' => 'move')); } // No need to pass title through s() here as it will be done automatically by html_writer. $attributes = array('title' => $course->fullname); if ($course->id > 0) { if (empty($course->visible)) { $attributes['class'] = 'dimmed'; } $courseurl = new moodle_url('/course/view.php', array('id' => $course->id)); $coursefullname = format_string(get_course_display_name_for_list($course), true, $course->id); $link = html_writer::link($courseurl, $coursefullname, $attributes); $html .= $this->output->heading($link, 2, 'title'); } else { $html .= $this->output->heading(html_writer::link( new moodle_url('/auth/mnet/jump.php', array('hostid' => $course->hostid, 'wantsurl' => '/course/view.php?id='.$course->remoteid)), format_string($course->shortname, true), $attributes) . ' (' . format_string($course->hostname) . ')', 2, 'title'); } $html .= $this->output->box('', 'flush'); $html .= html_writer::end_tag('div'); if (!empty($config->showchildren) && ($course->id > 0)) { // List children here. if ($children = block_course_overview_get_child_shortnames($course->id)) { $html .= html_writer::tag('span', $children, array('class' => 'coursechildren')); } } // If user is moving courses, then down't show overview. if (isset($overviews[$course->id]) && !$ismovingcourse) { $html .= $this->activity_display($course->id, $overviews[$course->id]); } if ($config->showcategories != BLOCKS_COURSE_OVERVIEW_SHOWCATEGORIES_NONE) { // List category parent or categories path here. $currentcategory = coursecat::get($course->category, IGNORE_MISSING); if ($currentcategory !== null) { $html .= html_writer::start_tag('div', array('class' => 'categorypath')); if ($config->showcategories == BLOCKS_COURSE_OVERVIEW_SHOWCATEGORIES_FULL_PATH) { foreach ($currentcategory->get_parents() as $categoryid) { $category = coursecat::get($categoryid, IGNORE_MISSING); if ($category !== null) { $html .= $category->get_formatted_name().' / '; } } } $html .= $currentcategory->get_formatted_name(); $html .= html_writer::end_tag('div'); } } $html .= $this->output->box('', 'flush'); $html .= $this->output->box_end(); $courseordernumber++; if ($ismovingcourse) { $moveurl = new moodle_url('/blocks/course_overview/move.php', array('sesskey' => sesskey(), 'moveto' => $courseordernumber, 'courseid' => $movingcourseid)); $a = new stdClass(); $a->movingcoursename = $courses[$movingcourseid]->fullname; $a->currentcoursename = $course->fullname; $movehereicon = html_writer::empty_tag('img', array('src' => $this->output->pix_url('movehere'), 'alt' => get_string('moveafterhere', 'block_course_overview', $a), 'title' => get_string('movehere'))); $moveurl = html_writer::link($moveurl, $movehereicon); $html .= html_writer::tag('div', $moveurl, array('class' => 'movehere')); } } // Wrap course list in a div and return. return html_writer::tag('div', $html, array('class' => 'course_list')); } /** * Coustuct activities overview for a course * * @param int $cid course id * @param array $overview overview of activities in course * @return string html of activities overview */ protected function activity_display($cid, $overview) { $output = html_writer::start_tag('div', array('class' => 'activity_info')); foreach (array_keys($overview) as $module) { $output .= html_writer::start_tag('div', array('class' => 'activity_overview')); $url = new moodle_url("/mod/$module/index.php", array('id' => $cid)); $modulename = get_string('modulename', $module); $icontext = html_writer::link($url, $this->output->pix_icon('icon', $modulename, 'mod_'.$module, array('class'=>'iconlarge'))); if (get_string_manager()->string_exists("activityoverview", $module)) { $icontext .= get_string("activityoverview", $module); } else { $icontext .= get_string("activityoverview", 'block_course_overview', $modulename); } // Add collapsible region with overview text in it. $output .= $this->collapsible_region($overview[$module], '', 'region_'.$cid.'_'.$module, $icontext, '', true); $output .= html_writer::end_tag('div'); } $output .= html_writer::end_tag('div'); return $output; } /** * Constructs header in editing mode * * @param int $max maximum number of courses * @return string html of header bar. */ public function editing_bar_head($max = 0) { $output = $this->output->box_start('notice'); $options = array('0' => get_string('alwaysshowall', 'block_course_overview')); for ($i = 1; $i <= $max; $i++) { $options[$i] = $i; } $url = new moodle_url('/my/index.php'); $select = new single_select($url, 'mynumber', $options, block_course_overview_get_max_user_courses(), array()); $select->set_label(get_string('numtodisplay', 'block_course_overview')); $output .= $this->output->render($select); $output .= $this->output->box_end(); return $output; } /** * Show hidden courses count * * @param int $total count of hidden courses * @return string html */ public function hidden_courses($total) { if ($total <= 0) { return; } $output = $this->output->box_start('notice'); $plural = $total > 1 ? 'plural' : ''; $config = get_config('block_course_overview'); // Show view all course link to user if forcedefaultmaxcourses is not empty. if (!empty($config->forcedefaultmaxcourses)) { $output .= get_string('hiddencoursecount'.$plural, 'block_course_overview', $total); } else { $a = new stdClass(); $a->coursecount = $total; $a->showalllink = html_writer::link(new moodle_url('/my/index.php', array('mynumber' => block_course_overview::SHOW_ALL_COURSES)), get_string('showallcourses')); $output .= get_string('hiddencoursecountwithshowall'.$plural, 'block_course_overview', $a); } $output .= $this->output->box_end(); return $output; } /** * Creates collapsable region * * @param string $contents existing contents * @param string $classes class names added to the div that is output. * @param string $id id added to the div that is output. Must not be blank. * @param string $caption text displayed at the top. Clicking on this will cause the region to expand or contract. * @param string $userpref the name of the user preference that stores the user's preferred default state. * (May be blank if you do not wish the state to be persisted. * @param bool $default Initial collapsed state to use if the user_preference it not set. * @return bool if true, return the HTML as a string, rather than printing it. */ protected function collapsible_region($contents, $classes, $id, $caption, $userpref = '', $default = false) { $output = $this->collapsible_region_start($classes, $id, $caption, $userpref, $default); $output .= $contents; $output .= $this->collapsible_region_end(); return $output; } /** * Print (or return) the start of a collapsible region, that has a caption that can * be clicked to expand or collapse the region. If JavaScript is off, then the region * will always be expanded. * * @param string $classes class names added to the div that is output. * @param string $id id added to the div that is output. Must not be blank. * @param string $caption text displayed at the top. Clicking on this will cause the region to expand or contract. * @param string $userpref the name of the user preference that stores the user's preferred default state. * (May be blank if you do not wish the state to be persisted. * @param bool $default Initial collapsed state to use if the user_preference it not set. * @return bool if true, return the HTML as a string, rather than printing it. */ protected function collapsible_region_start($classes, $id, $caption, $userpref = '', $default = false) { // Work out the initial state. if (!empty($userpref) and is_string($userpref)) { user_preference_allow_ajax_update($userpref, PARAM_BOOL); $collapsed = get_user_preferences($userpref, $default); } else { $collapsed = $default; $userpref = false; } if ($collapsed) { $classes .= ' collapsed'; } $output = ''; $output .= '
'; $output .= '
'; $output .= '
'; $output .= $caption . ' '; $output .= '
'; $this->page->requires->js_init_call('M.block_course_overview.collapsible', array($id, $userpref, get_string('clicktohideshow'))); return $output; } /** * Close a region started with print_collapsible_region_start. * * @return string return the HTML as a string, rather than printing it. */ protected function collapsible_region_end() { $output = '
'; return $output; } /** * Cretes html for welcome area * * @param int $msgcount number of messages * @return string html string for welcome area. */ public function welcome_area($msgcount) { global $USER; $output = $this->output->box_start('welcome_area'); $picture = $this->output->user_picture($USER, array('size' => 75, 'class' => 'welcome_userpicture')); $output .= html_writer::tag('div', $picture, array('class' => 'profilepicture')); $output .= $this->output->box_start('welcome_message'); $output .= $this->output->heading(get_string('welcome', 'block_course_overview', $USER->firstname)); $plural = 's'; if ($msgcount > 0) { $output .= get_string('youhavemessages', 'block_course_overview', $msgcount); if ($msgcount == 1) { $plural = ''; } } else { $output .= get_string('youhavenomessages', 'block_course_overview'); } $output .= html_writer::link(new moodle_url('/message/index.php'), get_string('message'.$plural, 'block_course_overview')); $output .= $this->output->box_end(); $output .= $this->output->box('', 'flush'); $output .= $this->output->box_end(); return $output; } }