Merge branch 'MDL-41152-26' of git://github.com/FMCorz/moodle into MOODLE_26_STABLE
[moodle.git] / badges / view.php
blobd623c81d0646e4ffae5bd4bcd7376a05c73f820d
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.
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 * Displays available badges to a user
20 * @package core
21 * @subpackage badges
22 * @copyright 2012 onwards Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 * @author Yuliya Bozhko <yuliya.bozhko@totaralms.com>
27 require_once(dirname(dirname(__FILE__)) . '/config.php');
28 require_once($CFG->libdir . '/badgeslib.php');
30 $type = required_param('type', PARAM_INT);
31 $courseid = optional_param('id', 0, PARAM_INT);
32 $sortby = optional_param('sort', 'name', PARAM_ALPHA);
33 $sorthow = optional_param('dir', 'DESC', PARAM_ALPHA);
34 $page = optional_param('page', 0, PARAM_INT);
36 require_login();
38 if (empty($CFG->enablebadges)) {
39 print_error('badgesdisabled', 'badges');
42 if (empty($CFG->badges_allowcoursebadges) && $courseid != 0) {
43 print_error('coursebadgesdisabled', 'badges');
46 if (!in_array($sortby, array('name', 'dateissued'))) {
47 $sortby = 'name';
50 if ($sorthow != 'ASC' && $sorthow != 'DESC') {
51 $sorthow = 'ACS';
54 if ($page < 0) {
55 $page = 0;
58 if ($course = $DB->get_record('course', array('id' => $courseid))) {
59 $PAGE->set_url('/badges/view.php', array('type' => $type, 'id' => $course->id, 'sort' => $sortby, 'dir' => $sorthow));
60 } else {
61 $PAGE->set_url('/badges/view.php', array('type' => $type, 'sort' => $sortby, 'dir' => $sorthow));
64 if ($type == BADGE_TYPE_SITE) {
65 $title = get_string('sitebadges', 'badges');
66 $PAGE->set_context(context_system::instance());
67 $PAGE->set_pagelayout('admin');
68 $PAGE->set_heading($title);
69 } else {
70 require_login($course);
71 $coursename = format_string($course->fullname, true, array('context' => context_course::instance($course->id)));
72 $title = $coursename . ': ' . get_string('coursebadges', 'badges');
73 $PAGE->set_context(context_course::instance($course->id));
74 $PAGE->set_pagelayout('course');
75 $PAGE->set_heading($title);
77 // Fix course navigation.
78 $PAGE->navbar->ignore_active();
79 $PAGE->navbar->add($course->shortname, new moodle_url('/course/view.php', array('id' => $course->id)));
80 $PAGE->navbar->add(get_string('coursebadges', 'badges'));
83 $PAGE->set_title($title);
84 $output = $PAGE->get_renderer('core', 'badges');
86 echo $output->header();
87 echo $OUTPUT->heading($title);
89 $totalcount = count(badges_get_badges($type, $courseid, '', '', '', '', $USER->id));
90 $records = badges_get_badges($type, $courseid, $sortby, $sorthow, $page, BADGE_PERPAGE, $USER->id);
92 if ($totalcount) {
93 echo $output->heading(get_string('badgestoearn', 'badges', $totalcount), 4);
95 if ($course && $course->startdate > time()) {
96 echo $OUTPUT->box(get_string('error:notifycoursedate', 'badges'), 'generalbox notifyproblem');
99 $badges = new badge_collection($records);
100 $badges->sort = $sortby;
101 $badges->dir = $sorthow;
102 $badges->page = $page;
103 $badges->perpage = BADGE_PERPAGE;
104 $badges->totalcount = $totalcount;
106 echo $output->render($badges);
107 } else {
108 echo $output->notification(get_string('nobadges', 'badges'));
111 echo $output->footer();