2013-04-02 13:57:39 +13:00
|
|
|
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renderer for use with the badges output
|
|
|
|
*
|
|
|
|
* @package core
|
|
|
|
* @subpackage badges
|
|
|
|
* @copyright 2012 onwards Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
* @author Yuliya Bozhko <yuliya.bozhko@totaralms.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once($CFG->libdir . '/badgeslib.php');
|
|
|
|
require_once($CFG->libdir . '/tablelib.php');
|
|
|
|
require_once($CFG->dirroot . '/user/filters/lib.php');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Standard HTML output renderer for badges
|
|
|
|
*/
|
|
|
|
class core_badges_renderer extends plugin_renderer_base {
|
|
|
|
|
|
|
|
// Outputs badges list.
|
|
|
|
public function print_badges_list($badges, $userid, $profile = false, $external = false) {
|
|
|
|
global $USER, $CFG;
|
|
|
|
foreach ($badges as $badge) {
|
|
|
|
if (!$external) {
|
|
|
|
$context = ($badge->type == BADGE_TYPE_SITE) ? context_system::instance() : context_course::instance($badge->courseid);
|
|
|
|
$bname = $badge->name;
|
|
|
|
$imageurl = moodle_url::make_pluginfile_url($context->id, 'badges', 'badgeimage', $badge->id, '/', 'f1', false);
|
|
|
|
} else {
|
|
|
|
$bname = $badge->assertion->badge->name;
|
|
|
|
$imageurl = $badge->imageUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
$name = html_writer::tag('span', $bname, array('class' => 'badge-name'));
|
|
|
|
|
|
|
|
$image = html_writer::empty_tag('img', array('src' => $imageurl, 'class' => 'badge-image'));
|
|
|
|
if (!empty($badge->dateexpire) && $badge->dateexpire < time()) {
|
|
|
|
$image .= $this->output->pix_icon('i/expired',
|
|
|
|
get_string('expireddate', 'badges', userdate($badge->dateexpire)),
|
|
|
|
'moodle',
|
|
|
|
array('class' => 'expireimage'));
|
|
|
|
$name .= '(' . get_string('expired', 'badges') . ')';
|
|
|
|
}
|
|
|
|
|
|
|
|
$download = $status = $push = '';
|
|
|
|
if (($userid == $USER->id) && !$profile) {
|
|
|
|
$url = new moodle_url('mybadges.php', array('download' => $badge->id, 'hash' => $badge->uniquehash, 'sesskey' => sesskey()));
|
2013-04-16 10:47:40 +12:00
|
|
|
$notexpiredbadge = (empty($badge->dateexpire) || $badge->dateexpire > time());
|
|
|
|
$backpackexists = badges_user_has_backpack($USER->id);
|
|
|
|
if (!empty($CFG->badges_allowexternalbackpack) && $notexpiredbadge && $backpackexists) {
|
2013-04-02 13:57:39 +13:00
|
|
|
$assertion = new moodle_url('/badges/assertion.php', array('b' => $badge->uniquehash));
|
|
|
|
$action = new component_action('click', 'addtobackpack', array('assertion' => $assertion->out(false)));
|
|
|
|
$push = $this->output->action_icon(new moodle_url('#'), new pix_icon('t/backpack', get_string('addtobackpack', 'badges')), $action);
|
|
|
|
}
|
|
|
|
|
|
|
|
$download = $this->output->action_icon($url, new pix_icon('t/download', get_string('download')));
|
|
|
|
if ($badge->visible) {
|
|
|
|
$url = new moodle_url('mybadges.php', array('hide' => $badge->issuedid, 'sesskey' => sesskey()));
|
|
|
|
$status = $this->output->action_icon($url, new pix_icon('t/hide', get_string('makeprivate', 'badges')));
|
|
|
|
} else {
|
|
|
|
$url = new moodle_url('mybadges.php', array('show' => $badge->issuedid, 'sesskey' => sesskey()));
|
|
|
|
$status = $this->output->action_icon($url, new pix_icon('t/show', get_string('makepublic', 'badges')));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$profile) {
|
|
|
|
$url = new moodle_url('badge.php', array('hash' => $badge->uniquehash));
|
|
|
|
} else {
|
|
|
|
if (!$external) {
|
|
|
|
$url = new moodle_url($CFG->wwwroot . '/badges/badge.php', array('hash' => $badge->uniquehash));
|
|
|
|
} else {
|
|
|
|
$url = new moodle_url($CFG->wwwroot . '/badges/external.php', array('badge' => serialize($badge)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$actions = html_writer::tag('div', $push . $download . $status, array('class' => 'badge-actions'));
|
|
|
|
$items[] = html_writer::link($url, $image . $actions . $name, array('title' => $bname));
|
|
|
|
}
|
|
|
|
|
|
|
|
return html_writer::alist($items, array('class' => 'badges'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Recipients selection form.
|
|
|
|
public function recipients_selection_form(user_selector_base $existinguc, user_selector_base $potentialuc) {
|
|
|
|
$output = '';
|
|
|
|
$formattributes = array();
|
|
|
|
$formattributes['id'] = 'recipientform';
|
2013-04-10 11:00:08 +12:00
|
|
|
$formattributes['action'] = $this->page->url;
|
2013-04-02 13:57:39 +13:00
|
|
|
$formattributes['method'] = 'post';
|
|
|
|
$output .= html_writer::start_tag('form', $formattributes);
|
|
|
|
$output .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'sesskey', 'value' => sesskey()));
|
|
|
|
|
|
|
|
$existingcell = new html_table_cell();
|
|
|
|
$existingcell->text = $existinguc->display(true);
|
|
|
|
$existingcell->attributes['class'] = 'existing';
|
|
|
|
$actioncell = new html_table_cell();
|
|
|
|
$actioncell->text = html_writer::start_tag('div', array());
|
|
|
|
$actioncell->text .= html_writer::empty_tag('input', array(
|
|
|
|
'type' => 'submit',
|
|
|
|
'name' => 'award',
|
|
|
|
'value' => $this->output->larrow() . ' ' . get_string('award', 'badges'),
|
|
|
|
'class' => 'actionbutton')
|
|
|
|
);
|
|
|
|
$actioncell->text .= html_writer::end_tag('div', array());
|
|
|
|
$actioncell->attributes['class'] = 'actions';
|
|
|
|
$potentialcell = new html_table_cell();
|
|
|
|
$potentialcell->text = $potentialuc->display(true);
|
|
|
|
$potentialcell->attributes['class'] = 'potential';
|
|
|
|
|
|
|
|
$table = new html_table();
|
|
|
|
$table->attributes['class'] = 'recipienttable boxaligncenter';
|
|
|
|
$table->data = array(new html_table_row(array($existingcell, $actioncell, $potentialcell)));
|
|
|
|
$output .= html_writer::table($table);
|
|
|
|
|
|
|
|
$output .= html_writer::end_tag('form');
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prints a badge overview infomation.
|
|
|
|
public function print_badge_overview($badge, $context) {
|
|
|
|
$display = "";
|
|
|
|
|
|
|
|
// Badge details.
|
|
|
|
$display .= html_writer::start_tag('fieldset', array('class' => 'generalbox'));
|
|
|
|
$display .= html_writer::tag('legend', get_string('badgedetails', 'badges'), array('class' => 'bold'));
|
|
|
|
|
|
|
|
$detailstable = new html_table();
|
|
|
|
$detailstable->attributes = array('class' => 'clearfix', 'id' => 'badgedetails');
|
|
|
|
$detailstable->data[] = array(get_string('name') . ":", $badge->name);
|
|
|
|
$detailstable->data[] = array(get_string('description', 'badges') . ":", $badge->description);
|
|
|
|
$detailstable->data[] = array(get_string('createdon', 'search') . ":", userdate($badge->timecreated));
|
|
|
|
$detailstable->data[] = array(get_string('badgeimage', 'badges') . ":",
|
|
|
|
print_badge_image($badge, $context, 'large'));
|
|
|
|
$display .= html_writer::table($detailstable);
|
|
|
|
$display .= html_writer::end_tag('fieldset');
|
|
|
|
|
|
|
|
// Issuer details.
|
|
|
|
$display .= html_writer::start_tag('fieldset', array('class' => 'generalbox'));
|
|
|
|
$display .= html_writer::tag('legend', get_string('issuerdetails', 'badges'), array('class' => 'bold'));
|
|
|
|
|
|
|
|
$issuertable = new html_table();
|
|
|
|
$issuertable->attributes = array('class' => 'clearfix', 'id' => 'badgeissuer');
|
|
|
|
$issuertable->data[] = array(get_string('issuername', 'badges') . ":", $badge->issuername);
|
|
|
|
$issuertable->data[] = array(get_string('contact', 'badges') . ":",
|
|
|
|
html_writer::tag('a', $badge->issuercontact, array('href' => 'mailto:' . $badge->issuercontact)));
|
|
|
|
$display .= html_writer::table($issuertable);
|
|
|
|
$display .= html_writer::end_tag('fieldset');
|
|
|
|
|
|
|
|
// Issuance details if any.
|
|
|
|
$display .= html_writer::start_tag('fieldset', array('class' => 'generalbox'));
|
|
|
|
$display .= html_writer::tag('legend', get_string('issuancedetails', 'badges'), array('class' => 'bold'));
|
|
|
|
if ($badge->can_expire()) {
|
|
|
|
if ($badge->expiredate) {
|
|
|
|
$display .= get_string('expiredate', 'badges', userdate($badge->expiredate));
|
|
|
|
} else if ($badge->expireperiod) {
|
|
|
|
if ($badge->expireperiod < 60) {
|
|
|
|
$display .= get_string('expireperiods', 'badges', round($badge->expireperiod, 2));
|
|
|
|
} else if ($badge->expireperiod < 60 * 60) {
|
|
|
|
$display .= get_string('expireperiodm', 'badges', round($badge->expireperiod / 60, 2));
|
|
|
|
} else if ($badge->expireperiod < 60 * 60 * 24) {
|
|
|
|
$display .= get_string('expireperiodh', 'badges', round($badge->expireperiod / 60 / 60, 2));
|
|
|
|
} else {
|
|
|
|
$display .= get_string('expireperiod', 'badges', round($badge->expireperiod / 60 / 60 / 24, 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$display .= get_string('noexpiry', 'badges');
|
|
|
|
}
|
|
|
|
$display .= html_writer::end_tag('fieldset');
|
|
|
|
|
|
|
|
// Criteria details if any.
|
|
|
|
$display .= html_writer::start_tag('fieldset', array('class' => 'generalbox'));
|
|
|
|
$display .= html_writer::tag('legend', get_string('bcriteria', 'badges'), array('class' => 'bold'));
|
|
|
|
if ($badge->has_criteria()) {
|
|
|
|
$display .= self::print_badge_criteria($badge);
|
|
|
|
} else {
|
|
|
|
$display .= get_string('nocriteria', 'badges');
|
|
|
|
if (has_capability('moodle/badges:configurecriteria', $context)) {
|
|
|
|
$display .= $this->output->single_button(
|
|
|
|
new moodle_url('/badges/criteria.php', array('id' => $badge->id)),
|
|
|
|
get_string('addcriteria', 'badges'), 'POST', array('class' => 'activatebadge'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$display .= html_writer::end_tag('fieldset');
|
|
|
|
|
|
|
|
// Awards details if any.
|
|
|
|
if (has_capability('moodle/badges:viewawarded', $context)) {
|
|
|
|
$display .= html_writer::start_tag('fieldset', array('class' => 'generalbox'));
|
|
|
|
$display .= html_writer::tag('legend', get_string('awards', 'badges'), array('class' => 'bold'));
|
|
|
|
if ($badge->has_awards()) {
|
|
|
|
$url = new moodle_url('/badges/recipients.php', array('id' => $badge->id));
|
|
|
|
$a = new stdClass();
|
|
|
|
$a->link = $url->out();
|
|
|
|
$a->count = count($badge->get_awards());
|
|
|
|
$display .= get_string('numawards', 'badges', $a);
|
|
|
|
} else {
|
|
|
|
$display .= get_string('noawards', 'badges');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (has_capability('moodle/badges:awardbadge', $context) &&
|
|
|
|
$badge->has_manual_award_criteria() &&
|
|
|
|
$badge->is_active()) {
|
|
|
|
$display .= $this->output->single_button(
|
|
|
|
new moodle_url('/badges/award.php', array('id' => $badge->id)),
|
|
|
|
get_string('award', 'badges'), 'POST', array('class' => 'activatebadge'));
|
|
|
|
}
|
|
|
|
$display .= html_writer::end_tag('fieldset');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $display;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prints action icons for the badge.
|
|
|
|
public function print_badge_table_actions($badge, $context) {
|
|
|
|
$actions = "";
|
|
|
|
|
|
|
|
if (has_capability('moodle/badges:configuredetails', $context)) {
|
|
|
|
// Activate/deactivate badge.
|
|
|
|
if ($badge->status == BADGE_STATUS_INACTIVE || $badge->status == BADGE_STATUS_INACTIVE_LOCKED) {
|
|
|
|
$url = new moodle_url(qualified_me());
|
|
|
|
$url->param('activate', $badge->id);
|
2013-04-05 17:10:43 +08:00
|
|
|
$url->param('sesskey', sesskey());
|
2013-04-02 13:57:39 +13:00
|
|
|
$actions .= $this->output->action_icon($url, new pix_icon('t/show', get_string('activate', 'badges'))) . " ";
|
|
|
|
} else {
|
|
|
|
$url = new moodle_url(qualified_me());
|
|
|
|
$url->param('lock', $badge->id);
|
|
|
|
$url->param('sesskey', sesskey());
|
|
|
|
$actions .= $this->output->action_icon($url, new pix_icon('t/hide', get_string('deactivate', 'badges'))) . " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Award badge manually.
|
|
|
|
if ($badge->has_manual_award_criteria() &&
|
|
|
|
has_capability('moodle/badges:awardbadge', $context) &&
|
|
|
|
$badge->is_active()) {
|
|
|
|
$url = new moodle_url('/badges/award.php', array('id' => $badge->id));
|
|
|
|
$actions .= $this->output->action_icon($url, new pix_icon('t/award', get_string('award', 'badges'))) . " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Edit badge.
|
|
|
|
if (has_capability('moodle/badges:configuredetails', $context)) {
|
|
|
|
$url = new moodle_url('/badges/edit.php', array('id' => $badge->id, 'action' => 'details'));
|
|
|
|
$actions .= $this->output->action_icon($url, new pix_icon('t/edit', get_string('edit'))) . " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Duplicate badge.
|
|
|
|
if (has_capability('moodle/badges:createbadge', $context)) {
|
|
|
|
$url = new moodle_url('/badges/action.php', array('copy' => '1', 'id' => $badge->id, 'sesskey' => sesskey()));
|
|
|
|
$actions .= $this->output->action_icon($url, new pix_icon('t/copy', get_string('copy'))) . " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete badge.
|
|
|
|
if (has_capability('moodle/badges:deletebadge', $context)) {
|
|
|
|
$url = new moodle_url(qualified_me());
|
|
|
|
$url->param('delete', $badge->id);
|
|
|
|
$actions .= $this->output->action_icon($url, new pix_icon('t/delete', get_string('delete'))) . " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $actions;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Outputs issued badge with actions available.
|
|
|
|
protected function render_issued_badge(issued_badge $ibadge) {
|
|
|
|
global $USER, $CFG, $DB;
|
|
|
|
$issued = $ibadge->issued;
|
|
|
|
$badge = new badge($ibadge->badgeid);
|
|
|
|
$today_date = date('Y-m-d');
|
|
|
|
$today = strtotime($today_date);
|
|
|
|
|
2013-04-16 10:47:40 +12:00
|
|
|
$table = new html_table();
|
2013-04-02 13:57:39 +13:00
|
|
|
|
2013-04-16 10:47:40 +12:00
|
|
|
$imagetable = new html_table();
|
|
|
|
$imagetable->attributes = array('class' => 'clearfix badgeissuedimage');
|
|
|
|
$imagetable->data[] = array(html_writer::empty_tag('img', array('src' => $issued['badge']['image'])));
|
|
|
|
if ($USER->id == $ibadge->recipient && !empty($CFG->enablebadges)) {
|
|
|
|
$imagetable->data[] = array($this->output->single_button(
|
|
|
|
new moodle_url('/badges/badge.php', array('hash' => $ibadge->hash, 'bake' => true)),
|
|
|
|
get_string('download'),
|
|
|
|
'POST'));
|
|
|
|
$expiration = isset($issued['expires']) ? strtotime($issued['expires']) : $today + 1;
|
|
|
|
if (!empty($CFG->badges_allowexternalbackpack) && ($expiration > $today) && badges_user_has_backpack($USER->id)) {
|
|
|
|
$assertion = new moodle_url('/badges/assertion.php', array('b' => $ibadge->hash));
|
|
|
|
$attributes = array(
|
|
|
|
'type' => 'button',
|
|
|
|
'value' => get_string('addtobackpack', 'badges'),
|
|
|
|
'onclick' => 'OpenBadges.issue(["' . $assertion->out(false) . '"], function(errors, successes) { })');
|
|
|
|
$tobackpack = html_writer::tag('input', '', $attributes);
|
|
|
|
$imagetable->data[] = array($tobackpack);
|
2013-04-02 13:57:39 +13:00
|
|
|
}
|
2013-04-16 10:47:40 +12:00
|
|
|
}
|
|
|
|
$datatable = new html_table();
|
|
|
|
$datatable->attributes = array('class' => 'badgeissuedinfo');
|
|
|
|
$datatable->colclasses = array('bfield', 'bvalue');
|
|
|
|
$datatable->data[] = array($this->output->heading(get_string('issuerdetails', 'badges'), 3), '');
|
|
|
|
$datatable->data[] = array(get_string('issuername', 'badges'), $badge->issuername);
|
|
|
|
if (isset($badge->issuercontact) && !empty($badge->issuercontact)) {
|
|
|
|
$datatable->data[] = array(get_string('contact', 'badges'),
|
|
|
|
html_writer::tag('a', $badge->issuercontact, array('href' => 'mailto:' . $badge->issuercontact)));
|
|
|
|
}
|
|
|
|
$datatable->data[] = array($this->output->heading(get_string('badgedetails', 'badges'), 3), '');
|
|
|
|
$datatable->data[] = array(get_string('name'), $badge->name);
|
|
|
|
$datatable->data[] = array(get_string('description', 'badges'), $badge->description);
|
2013-04-02 13:57:39 +13:00
|
|
|
|
2013-04-16 10:47:40 +12:00
|
|
|
if ($badge->type == BADGE_TYPE_COURSE && isset($badge->courseid)) {
|
|
|
|
$coursename = $DB->get_field('course', 'fullname', array('id' => $badge->courseid));
|
|
|
|
$datatable->data[] = array(get_string('course'), $coursename);
|
|
|
|
}
|
2013-04-02 13:57:39 +13:00
|
|
|
|
2013-04-16 10:47:40 +12:00
|
|
|
$datatable->data[] = array(get_string('bcriteria', 'badges'), self::print_badge_criteria($badge));
|
|
|
|
$datatable->data[] = array($this->output->heading(get_string('issuancedetails', 'badges'), 3), '');
|
|
|
|
$datatable->data[] = array(get_string('dateawarded', 'badges'), $issued['issued_on']);
|
|
|
|
if (isset($issued['expires'])) {
|
|
|
|
$expiration = strtotime($issued['expires']);
|
|
|
|
if ($expiration < $today) {
|
|
|
|
$cell = new html_table_cell($issued['expires'] . get_string('warnexpired', 'badges'));
|
|
|
|
$cell->attributes = array('class' => 'notifyproblem warning');
|
|
|
|
$datatable->data[] = array(get_string('expirydate', 'badges'), $cell);
|
|
|
|
|
|
|
|
$image = html_writer::start_tag('div', array('class' => 'badge'));
|
|
|
|
$image .= html_writer::empty_tag('img', array('src' => $issued['badge']['image']));
|
|
|
|
$image .= $this->output->pix_icon('i/expired',
|
|
|
|
get_string('expireddate', 'badges', $issued['expires']),
|
|
|
|
'moodle',
|
|
|
|
array('class' => 'expireimage'));
|
|
|
|
$image .= html_writer::end_tag('div');
|
|
|
|
$imagetable->data[0] = array($image);
|
|
|
|
} else {
|
|
|
|
$datatable->data[] = array(get_string('expirydate', 'badges'), $issued['expires']);
|
2013-04-02 13:57:39 +13:00
|
|
|
}
|
2013-04-16 10:47:40 +12:00
|
|
|
}
|
2013-04-02 13:57:39 +13:00
|
|
|
|
2013-04-16 10:47:40 +12:00
|
|
|
// Print evidence.
|
|
|
|
$agg = $badge->get_aggregation_methods();
|
|
|
|
$evidence = $badge->get_criteria_completions($ibadge->recipient);
|
|
|
|
$eids = array_map(create_function('$o', 'return $o->critid;'), $evidence);
|
|
|
|
unset($badge->criteria[BADGE_CRITERIA_TYPE_OVERALL]);
|
|
|
|
|
|
|
|
$items = array();
|
|
|
|
foreach ($badge->criteria as $type => $c) {
|
|
|
|
if (in_array($c->id, $eids)) {
|
|
|
|
if (count($c->params) == 1) {
|
|
|
|
$items[] = get_string('criteria_descr_single_' . $type , 'badges') . $c->get_details();
|
|
|
|
} else {
|
|
|
|
$items[] = get_string('criteria_descr_' . $type , 'badges',
|
|
|
|
strtoupper($agg[$badge->get_aggregation_method($type)])) . $c->get_details();
|
2013-04-02 13:57:39 +13:00
|
|
|
}
|
|
|
|
}
|
2013-04-16 10:47:40 +12:00
|
|
|
}
|
2013-04-02 13:57:39 +13:00
|
|
|
|
2013-04-16 10:47:40 +12:00
|
|
|
$datatable->data[] = array(get_string('evidence', 'badges'),
|
|
|
|
get_string('completioninfo', 'badges') .
|
|
|
|
html_writer::alist($items, array(), 'ul'));
|
|
|
|
$table->attributes = array('class' => 'generalbox boxaligncenter issuedbadgebox');
|
|
|
|
$table->data[] = array(html_writer::table($imagetable), html_writer::table($datatable));
|
|
|
|
$htmlbadge = html_writer::table($table);
|
2013-04-02 13:57:39 +13:00
|
|
|
|
2013-04-16 10:47:40 +12:00
|
|
|
return $htmlbadge;
|
2013-04-02 13:57:39 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
// Outputs external badge.
|
|
|
|
protected function render_external_badge(external_badge $ibadge) {
|
|
|
|
$issued = $ibadge->issued;
|
|
|
|
$assertion = $issued->assertion;
|
|
|
|
$issuer = $assertion->badge->issuer;
|
|
|
|
$table = new html_table();
|
|
|
|
|
|
|
|
$imagetable = new html_table();
|
|
|
|
$imagetable->attributes = array('class' => 'clearfix badgeissuedimage');
|
|
|
|
$imagetable->data[] = array(html_writer::empty_tag('img', array('src' => $issued->imageUrl, 'width' => '100px')));
|
|
|
|
|
|
|
|
$datatable = new html_table();
|
|
|
|
$datatable->attributes = array('class' => 'badgeissuedinfo');
|
|
|
|
$datatable->colclasses = array('bfield', 'bvalue');
|
|
|
|
$datatable->data[] = array($this->output->heading(get_string('issuerdetails', 'badges'), 3), '');
|
|
|
|
$datatable->data[] = array(get_string('issuername', 'badges'), $issuer->name);
|
|
|
|
$datatable->data[] = array(get_string('issuerurl', 'badges'),
|
|
|
|
html_writer::tag('a', $issuer->origin, array('href' => $issuer->origin)));
|
|
|
|
if (isset($issuer->contact)) {
|
|
|
|
$datatable->data[] = array(get_string('contact', 'badges'),
|
|
|
|
html_writer::tag('a', $issuer->contact, array('href' => 'mailto:' . $issuer->contact)));
|
|
|
|
}
|
|
|
|
$datatable->data[] = array($this->output->heading(get_string('badgedetails', 'badges'), 3), '');
|
|
|
|
$datatable->data[] = array(get_string('name'), $assertion->badge->name);
|
|
|
|
$datatable->data[] = array(get_string('description', 'badges'), $assertion->badge->description);
|
|
|
|
$datatable->data[] = array(get_string('bcriteria', 'badges'),
|
|
|
|
html_writer::tag('a', $assertion->badge->criteria, array('href' => $assertion->badge->criteria)));
|
|
|
|
$datatable->data[] = array($this->output->heading(get_string('issuancedetails', 'badges'), 3), '');
|
|
|
|
if (isset($assertion->issued_on)) {
|
|
|
|
$datatable->data[] = array(get_string('dateawarded', 'badges'), $assertion->issued_on);
|
|
|
|
}
|
|
|
|
if (isset($assertion->badge->expire)) {
|
|
|
|
$today_date = date('Y-m-d');
|
|
|
|
$today = strtotime($today_date);
|
|
|
|
$expiration = strtotime($assertion->badge->expire);
|
|
|
|
if ($expiration < $today) {
|
|
|
|
$cell = new html_table_cell($assertion->badge->expire . get_string('warnexpired', 'badges'));
|
|
|
|
$cell->attributes = array('class' => 'notifyproblem warning');
|
|
|
|
$datatable->data[] = array(get_string('expirydate', 'badges'), $cell);
|
|
|
|
|
|
|
|
$image = html_writer::start_tag('div', array('class' => 'badge'));
|
|
|
|
$image .= html_writer::empty_tag('img', array('src' => $issued['badge']['image']));
|
|
|
|
$image .= html_writer::start_tag('span', array('class' => 'expired'))
|
|
|
|
. $this->output->pix_icon('i/expired',
|
|
|
|
get_string('expireddate', 'badges', $assertion->badge->expire),
|
|
|
|
'moodle',
|
|
|
|
array('class' => 'expireimage'))
|
|
|
|
. html_writer::end_tag('span');
|
|
|
|
$image .= html_writer::end_tag('div');
|
|
|
|
$imagetable->data[0] = array($image);
|
|
|
|
} else {
|
|
|
|
$datatable->data[] = array(get_string('expirydate', 'badges'), $assertion->badge->expire);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isset($assertion->evidence)) {
|
|
|
|
$datatable->data[] = array(get_string('evidence', 'badges'),
|
|
|
|
html_writer::tag('a', $assertion->evidence, array('href' => $assertion->evidence)));
|
|
|
|
}
|
|
|
|
$table->attributes = array('class' => 'generalbox boxaligncenter issuedbadgebox');
|
|
|
|
$table->data[] = array(html_writer::table($imagetable), html_writer::table($datatable));
|
|
|
|
$htmlbadge = html_writer::table($table);
|
|
|
|
|
|
|
|
return $htmlbadge;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Outputs table of user badges.
|
|
|
|
protected function render_badge_user_collection(badge_user_collection $badges) {
|
|
|
|
global $CFG, $USER, $SITE;
|
2013-04-16 10:47:40 +12:00
|
|
|
$backpack = $badges->backpack;
|
|
|
|
$mybackpack = new moodle_url('/badges/mybackpack.php');
|
|
|
|
|
2013-04-02 13:57:39 +13:00
|
|
|
$paging = new paging_bar($badges->totalcount, $badges->page, $badges->perpage, $this->page->url, 'page');
|
|
|
|
$htmlpagingbar = $this->render($paging);
|
|
|
|
|
2013-04-16 10:47:40 +12:00
|
|
|
// Set backpack connection string.
|
|
|
|
$backpackconnect = '';
|
|
|
|
if (!empty($CFG->badges_allowexternalbackpack) && is_null($backpack)) {
|
|
|
|
$backpackconnect = $this->output->box(get_string('localconnectto', 'badges', $mybackpack->out()), 'noticebox');
|
|
|
|
}
|
2013-04-02 13:57:39 +13:00
|
|
|
// Search box.
|
|
|
|
$searchform = $this->output->box($this->helper_search_form($badges->search), 'boxwidthwide boxaligncenter');
|
|
|
|
|
|
|
|
// Download all button.
|
|
|
|
$downloadall = $this->output->single_button(
|
|
|
|
new moodle_url('/badges/mybadges.php', array('downloadall' => true, 'sesskey' => sesskey())),
|
|
|
|
get_string('downloadall'), 'POST', array('class' => 'activatebadge'));
|
|
|
|
|
|
|
|
// Local badges.
|
|
|
|
$localhtml = html_writer::start_tag('fieldset', array('class' => 'generalbox'));
|
|
|
|
$localhtml .= html_writer::tag('legend',
|
|
|
|
$this->output->heading_with_help(get_string('localbadges', 'badges', $SITE->fullname), 'localbadgesh', 'badges'));
|
|
|
|
if ($badges->badges) {
|
|
|
|
$table = new html_table();
|
|
|
|
$table->attributes['class'] = 'statustable';
|
|
|
|
$table->data[] = array($this->output->heading(get_string('badgesearned', 'badges', $badges->totalcount), 4, 'activatebadge'), $downloadall);
|
|
|
|
$downloadbutton = html_writer::table($table);
|
|
|
|
|
|
|
|
$htmllist = $this->print_badges_list($badges->badges, $USER->id);
|
2013-04-16 10:47:40 +12:00
|
|
|
$localhtml .= $backpackconnect . $downloadbutton . $searchform . $htmlpagingbar . $htmllist . $htmlpagingbar;
|
2013-04-02 13:57:39 +13:00
|
|
|
} else {
|
|
|
|
$localhtml .= $searchform . $this->output->notification(get_string('nobadges', 'badges'));
|
|
|
|
}
|
|
|
|
$localhtml .= html_writer::end_tag('fieldset');
|
|
|
|
|
|
|
|
// External badges.
|
|
|
|
$externalhtml = "";
|
2013-04-06 14:24:48 +13:00
|
|
|
if (!empty($CFG->badges_allowexternalbackpack)) {
|
2013-04-02 13:57:39 +13:00
|
|
|
$externalhtml .= html_writer::start_tag('fieldset', array('class' => 'generalbox'));
|
|
|
|
$externalhtml .= html_writer::tag('legend', $this->output->heading_with_help(get_string('externalbadges', 'badges'), 'externalbadges', 'badges'));
|
|
|
|
if (!is_null($backpack)) {
|
2013-04-16 10:47:40 +12:00
|
|
|
if ($backpack->totalcollections == 0) {
|
|
|
|
$externalhtml .= get_string('nobackpackcollections', 'badges', $backpack);
|
2013-04-02 13:57:39 +13:00
|
|
|
} else {
|
2013-04-16 10:47:40 +12:00
|
|
|
if ($backpack->totalbadges == 0) {
|
|
|
|
$externalhtml .= get_string('nobackpackbadges', 'badges', $backpack);
|
|
|
|
} else {
|
|
|
|
$externalhtml .= get_string('backpackbadges', 'badges', $backpack);
|
|
|
|
$externalhtml .= '<br/><br/>' . $this->print_badges_list($backpack->badges, $USER->id, true, true);
|
|
|
|
}
|
2013-04-02 13:57:39 +13:00
|
|
|
}
|
|
|
|
} else {
|
2013-04-16 10:47:40 +12:00
|
|
|
$externalhtml .= get_string('externalconnectto', 'badges', $mybackpack->out());
|
2013-04-02 13:57:39 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
$externalhtml .= html_writer::end_tag('fieldset');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $localhtml . $externalhtml;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Outputs table of available badges.
|
|
|
|
protected function render_badge_collection(badge_collection $badges) {
|
|
|
|
$paging = new paging_bar($badges->totalcount, $badges->page, $badges->perpage, $this->page->url, 'page');
|
|
|
|
$htmlpagingbar = $this->render($paging);
|
|
|
|
$table = new html_table();
|
2013-05-06 16:20:02 +12:00
|
|
|
$table->attributes['class'] = 'collection';
|
2013-04-02 13:57:39 +13:00
|
|
|
|
|
|
|
$sortbyname = $this->helper_sortable_heading(get_string('name'),
|
|
|
|
'name', $badges->sort, $badges->dir);
|
|
|
|
$sortbyawarded = $this->helper_sortable_heading(get_string('awardedtoyou', 'badges'),
|
|
|
|
'dateissued', $badges->sort, $badges->dir);
|
|
|
|
$table->head = array(
|
|
|
|
get_string('badgeimage', 'badges'),
|
|
|
|
$sortbyname,
|
|
|
|
get_string('description', 'badges'),
|
|
|
|
get_string('bcriteria', 'badges'),
|
|
|
|
$sortbyawarded
|
|
|
|
);
|
|
|
|
$table->colclasses = array('badgeimage', 'name', 'description', 'criteria', 'awards');
|
|
|
|
|
|
|
|
foreach ($badges->badges as $badge) {
|
|
|
|
$badgeimage = print_badge_image($badge, $this->page->context, 'large');
|
|
|
|
$name = $badge->name;
|
|
|
|
$description = $badge->description;
|
|
|
|
$criteria = self::print_badge_criteria($badge);
|
|
|
|
if ($badge->dateissued) {
|
|
|
|
$icon = new pix_icon('i/tick_green_big',
|
|
|
|
get_string('dateearned', 'badges',
|
|
|
|
userdate($badge->dateissued, get_string('strftimedatefullshort', 'core_langconfig'))));
|
|
|
|
$badgeurl = new moodle_url('/badges/badge.php', array('hash' => $badge->uniquehash));
|
|
|
|
$awarded = $this->output->action_icon($badgeurl, $icon, null, null, true);
|
|
|
|
} else {
|
|
|
|
$awarded = "";
|
|
|
|
}
|
|
|
|
$row = array($badgeimage, $name, $description, $criteria, $awarded);
|
|
|
|
$table->data[] = $row;
|
|
|
|
}
|
|
|
|
|
|
|
|
$htmltable = html_writer::table($table);
|
|
|
|
|
|
|
|
return $htmlpagingbar . $htmltable . $htmlpagingbar;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Outputs table of badges with actions available.
|
|
|
|
protected function render_badge_management(badge_management $badges) {
|
|
|
|
$paging = new paging_bar($badges->totalcount, $badges->page, $badges->perpage, $this->page->url, 'page');
|
|
|
|
|
|
|
|
// New badge button.
|
|
|
|
$n['type'] = $this->page->url->get_param('type');
|
|
|
|
$n['id'] = $this->page->url->get_param('id');
|
|
|
|
$htmlnew = $this->output->single_button(new moodle_url('newbadge.php', $n), get_string('newbadge', 'badges'));
|
|
|
|
|
|
|
|
$htmlpagingbar = $this->render($paging);
|
|
|
|
$table = new html_table();
|
|
|
|
$table->attributes['class'] = 'collection';
|
|
|
|
|
|
|
|
$sortbyname = $this->helper_sortable_heading(get_string('name'),
|
|
|
|
'name', $badges->sort, $badges->dir);
|
|
|
|
$sortbystatus = $this->helper_sortable_heading(get_string('status', 'badges'),
|
|
|
|
'status', $badges->sort, $badges->dir);
|
|
|
|
$table->head = array(
|
|
|
|
$sortbyname,
|
|
|
|
$sortbystatus,
|
|
|
|
get_string('bcriteria', 'badges'),
|
|
|
|
get_string('awards', 'badges'),
|
|
|
|
get_string('actions')
|
|
|
|
);
|
|
|
|
$table->colclasses = array('name', 'status', 'criteria', 'awards', 'actions');
|
|
|
|
|
|
|
|
foreach ($badges->badges as $b) {
|
|
|
|
$style = !$b->is_active() ? array('class' => 'dimmed') : array();
|
|
|
|
$forlink = print_badge_image($b, $this->page->context) . ' ' .
|
|
|
|
html_writer::start_tag('span') . $b->name . html_writer::end_tag('span');
|
|
|
|
$name = html_writer::link(new moodle_url('/badges/overview.php', array('id' => $b->id)), $forlink, $style);
|
|
|
|
$status = $b->statstring;
|
|
|
|
$criteria = self::print_badge_criteria($b, 'short');
|
|
|
|
|
|
|
|
if (has_capability('moodle/badges:viewawarded', $this->page->context)) {
|
|
|
|
$awards = html_writer::link(new moodle_url('/badges/recipients.php', array('id' => $b->id)), $b->awards);
|
|
|
|
} else {
|
|
|
|
$awards = $b->awards;
|
|
|
|
}
|
|
|
|
|
|
|
|
$actions = self::print_badge_table_actions($b, $this->page->context);
|
|
|
|
|
|
|
|
$row = array($name, $status, $criteria, $awards, $actions);
|
|
|
|
$table->data[] = $row;
|
|
|
|
}
|
|
|
|
$htmltable = html_writer::table($table);
|
|
|
|
|
|
|
|
return $htmlnew . $htmlpagingbar . $htmltable . $htmlpagingbar;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prints tabs for badge editing.
|
|
|
|
public function print_badge_tabs($badgeid, $context, $current = 'overview') {
|
|
|
|
global $DB;
|
|
|
|
|
2013-04-11 22:45:04 +10:00
|
|
|
$row = array();
|
2013-04-02 13:57:39 +13:00
|
|
|
|
|
|
|
$row[] = new tabobject('overview',
|
|
|
|
new moodle_url('/badges/overview.php', array('id' => $badgeid)),
|
|
|
|
get_string('boverview', 'badges')
|
|
|
|
);
|
|
|
|
|
|
|
|
if (has_capability('moodle/badges:configuredetails', $context)) {
|
|
|
|
$row[] = new tabobject('details',
|
|
|
|
new moodle_url('/badges/edit.php', array('id' => $badgeid, 'action' => 'details')),
|
|
|
|
get_string('bdetails', 'badges')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (has_capability('moodle/badges:configurecriteria', $context)) {
|
|
|
|
$row[] = new tabobject('criteria',
|
|
|
|
new moodle_url('/badges/criteria.php', array('id' => $badgeid)),
|
|
|
|
get_string('bcriteria', 'badges')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (has_capability('moodle/badges:configuremessages', $context)) {
|
|
|
|
$row[] = new tabobject('message',
|
|
|
|
new moodle_url('/badges/edit.php', array('id' => $badgeid, 'action' => 'message')),
|
|
|
|
get_string('bmessage', 'badges')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (has_capability('moodle/badges:viewawarded', $context)) {
|
|
|
|
$awarded = $DB->count_records('badge_issued', array('badgeid' => $badgeid));
|
|
|
|
$row[] = new tabobject('awards',
|
|
|
|
new moodle_url('/badges/recipients.php', array('id' => $badgeid)),
|
|
|
|
get_string('bawards', 'badges', $awarded)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-04-11 22:45:04 +10:00
|
|
|
echo $this->tabtree($row, $current);
|
2013-04-02 13:57:39 +13:00
|
|
|
}
|
|
|
|
|
2013-05-04 11:44:25 +08:00
|
|
|
/**
|
|
|
|
* Prints badge status box.
|
|
|
|
* @return Either the status box html as a string or null
|
|
|
|
*/
|
2013-04-02 13:57:39 +13:00
|
|
|
public function print_badge_status_box(badge $badge) {
|
|
|
|
if (has_capability('moodle/badges:configurecriteria', $badge->get_context())) {
|
2013-05-04 11:44:25 +08:00
|
|
|
$table = new html_table();
|
|
|
|
$table->attributes['class'] = 'boxaligncenter statustable';
|
|
|
|
|
2013-04-02 13:57:39 +13:00
|
|
|
if (!$badge->has_criteria()) {
|
|
|
|
$criteriaurl = new moodle_url('/badges/criteria.php', array('id' => $badge->id));
|
|
|
|
$status = get_string('nocriteria', 'badges');
|
|
|
|
if ($this->page->url != $criteriaurl) {
|
|
|
|
$action = $this->output->single_button(
|
|
|
|
$criteriaurl,
|
|
|
|
get_string('addcriteria', 'badges'), 'POST', array('class' => 'activatebadge'));
|
|
|
|
} else {
|
|
|
|
$action = '';
|
|
|
|
}
|
|
|
|
$row = array($status, $action);
|
|
|
|
} else {
|
|
|
|
$status = get_string('statusmessage_' . $badge->status, 'badges');
|
|
|
|
if ($badge->is_active()) {
|
|
|
|
$action = $this->output->single_button(new moodle_url('/badges/action.php',
|
|
|
|
array('id' => $badge->id, 'lock' => 1, 'sesskey' => sesskey(),
|
|
|
|
'return' => $this->page->url->out_as_local_url(false))),
|
|
|
|
get_string('deactivate', 'badges'), 'POST', array('class' => 'activatebadge'));
|
|
|
|
} else {
|
|
|
|
$action = $this->output->single_button(new moodle_url('/badges/action.php',
|
|
|
|
array('id' => $badge->id, 'activate' => 1, 'sesskey' => sesskey(),
|
|
|
|
'return' => $this->page->url->out_as_local_url(false))),
|
|
|
|
get_string('activate', 'badges'), 'POST', array('class' => 'activatebadge'));
|
|
|
|
}
|
|
|
|
$row = array($status . $this->output->help_icon('status', 'badges'), $action);
|
|
|
|
}
|
2013-05-04 11:44:25 +08:00
|
|
|
$table->data[] = $row;
|
2013-04-02 13:57:39 +13:00
|
|
|
|
2013-05-04 11:44:25 +08:00
|
|
|
$style = $badge->is_active() ? 'generalbox statusbox active' : 'generalbox statusbox inactive';
|
|
|
|
return $this->output->box(html_writer::table($table), $style);
|
|
|
|
}
|
2013-04-02 13:57:39 +13:00
|
|
|
|
2013-05-04 11:44:25 +08:00
|
|
|
return null;
|
2013-04-02 13:57:39 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
// Prints badge criteria.
|
|
|
|
public function print_badge_criteria(badge $badge, $short = '') {
|
|
|
|
$output = "";
|
|
|
|
$agg = $badge->get_aggregation_methods();
|
|
|
|
if (empty($badge->criteria)) {
|
|
|
|
return get_string('nocriteria', 'badges');
|
|
|
|
} else if (count($badge->criteria) == 2) {
|
|
|
|
if (!$short) {
|
|
|
|
$output .= get_string('criteria_descr', 'badges');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$output .= get_string('criteria_descr_' . $short . BADGE_CRITERIA_TYPE_OVERALL, 'badges',
|
|
|
|
strtoupper($agg[$badge->get_aggregation_method()]));
|
|
|
|
}
|
|
|
|
$items = array();
|
|
|
|
unset($badge->criteria[BADGE_CRITERIA_TYPE_OVERALL]);
|
|
|
|
foreach ($badge->criteria as $type => $c) {
|
|
|
|
if (count($c->params) == 1) {
|
|
|
|
$items[] = get_string('criteria_descr_single_' . $short . $type , 'badges') . $c->get_details($short);
|
|
|
|
} else {
|
|
|
|
$items[] = get_string('criteria_descr_' . $short . $type , 'badges',
|
|
|
|
strtoupper($agg[$badge->get_aggregation_method($type)])) . $c->get_details($short);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$output .= html_writer::alist($items, array(), 'ul');
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prints criteria actions for badge editing.
|
|
|
|
public function print_criteria_actions(badge $badge) {
|
|
|
|
$table = new html_table();
|
|
|
|
$table->attributes = array('class' => 'boxaligncenter', 'id' => 'badgeactions');
|
|
|
|
$table->colclasses = array('activatebadge');
|
|
|
|
|
|
|
|
$actions = array();
|
|
|
|
if (!$badge->is_active() && !$badge->is_locked()) {
|
|
|
|
$accepted = $badge->get_accepted_criteria();
|
|
|
|
$potential = array_diff($accepted, array_keys($badge->criteria));
|
|
|
|
|
|
|
|
if (!empty($potential)) {
|
|
|
|
foreach ($potential as $p) {
|
|
|
|
if ($p != 0) {
|
|
|
|
$select[$p] = get_string('criteria_' . $p, 'badges');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$actions[] = get_string('addbadgecriteria', 'badges');
|
|
|
|
$actions[] = $this->output->single_select(new moodle_url('/badges/criteria_settings.php',
|
|
|
|
array('badgeid' => $badge->id, 'add' => true)), 'type', $select);
|
|
|
|
} else {
|
|
|
|
$actions[] = $this->output->box(get_string('nothingtoadd', 'badges'), 'clearfix');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$table->data[] = $actions;
|
|
|
|
return html_writer::table($table);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Renders a table with users who have earned the badge.
|
|
|
|
// Based on stamps collection plugin.
|
|
|
|
protected function render_badge_recipients(badge_recipients $recipients) {
|
|
|
|
$paging = new paging_bar($recipients->totalcount, $recipients->page, $recipients->perpage, $this->page->url, 'page');
|
|
|
|
$htmlpagingbar = $this->render($paging);
|
|
|
|
$table = new html_table();
|
2013-05-06 16:20:02 +12:00
|
|
|
$table->attributes['class'] = 'generaltable boxaligncenter boxwidthwide';
|
2013-04-02 13:57:39 +13:00
|
|
|
|
|
|
|
$sortbyfirstname = $this->helper_sortable_heading(get_string('firstname'),
|
|
|
|
'firstname', $recipients->sort, $recipients->dir);
|
|
|
|
$sortbylastname = $this->helper_sortable_heading(get_string('lastname'),
|
|
|
|
'lastname', $recipients->sort, $recipients->dir);
|
|
|
|
if ($this->helper_fullname_format() == 'lf') {
|
|
|
|
$sortbyname = $sortbylastname . ' / ' . $sortbyfirstname;
|
|
|
|
} else {
|
|
|
|
$sortbyname = $sortbyfirstname . ' / ' . $sortbylastname;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sortbydate = $this->helper_sortable_heading(get_string('dateawarded', 'badges'),
|
|
|
|
'dateissued', $recipients->sort, $recipients->dir);
|
|
|
|
|
|
|
|
$table->head = array($sortbyname, $sortbydate, '');
|
|
|
|
|
|
|
|
foreach ($recipients->userids as $holder) {
|
|
|
|
$fullname = fullname($holder);
|
|
|
|
$fullname = html_writer::link(
|
|
|
|
new moodle_url('/user/profile.php', array('id' => $holder->userid)),
|
|
|
|
$fullname
|
|
|
|
);
|
|
|
|
$awarded = userdate($holder->dateissued);
|
|
|
|
$badgeurl = html_writer::link(
|
|
|
|
new moodle_url('/badges/badge.php', array('hash' => $holder->uniquehash)),
|
|
|
|
get_string('viewbadge', 'badges')
|
|
|
|
);
|
|
|
|
|
|
|
|
$row = array($fullname, $awarded, $badgeurl);
|
|
|
|
$table->data[] = $row;
|
|
|
|
}
|
|
|
|
|
|
|
|
$htmltable = html_writer::table($table);
|
|
|
|
|
|
|
|
return $htmlpagingbar . $htmltable . $htmlpagingbar;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Helper methods
|
|
|
|
// Reused from stamps collection plugin
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders a text with icons to sort by the given column
|
|
|
|
*
|
|
|
|
* This is intended for table headings.
|
|
|
|
*
|
|
|
|
* @param string $text The heading text
|
|
|
|
* @param string $sortid The column id used for sorting
|
|
|
|
* @param string $sortby Currently sorted by (column id)
|
|
|
|
* @param string $sorthow Currently sorted how (ASC|DESC)
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function helper_sortable_heading($text, $sortid = null, $sortby = null, $sorthow = null) {
|
|
|
|
$out = html_writer::tag('span', $text, array('class' => 'text'));
|
|
|
|
|
|
|
|
if (!is_null($sortid)) {
|
|
|
|
if ($sortby !== $sortid || $sorthow !== 'ASC') {
|
|
|
|
$url = new moodle_url($this->page->url);
|
|
|
|
$url->params(array('sort' => $sortid, 'dir' => 'ASC'));
|
|
|
|
$out .= $this->output->action_icon($url,
|
|
|
|
new pix_icon('t/sort_asc', get_string('sortbyx', 'core', s($text)), null, array('class' => 'iconsort')));
|
|
|
|
}
|
|
|
|
if ($sortby !== $sortid || $sorthow !== 'DESC') {
|
|
|
|
$url = new moodle_url($this->page->url);
|
|
|
|
$url->params(array('sort' => $sortid, 'dir' => 'DESC'));
|
|
|
|
$out .= $this->output->action_icon($url,
|
|
|
|
new pix_icon('t/sort_desc', get_string('sortbyxreverse', 'core', s($text)), null, array('class' => 'iconsort')));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Tries to guess the fullname format set at the site
|
|
|
|
*
|
|
|
|
* @return string fl|lf
|
|
|
|
*/
|
|
|
|
protected function helper_fullname_format() {
|
|
|
|
$fake = new stdClass();
|
|
|
|
$fake->lastname = 'LLLL';
|
|
|
|
$fake->firstname = 'FFFF';
|
|
|
|
$fullname = get_string('fullnamedisplay', '', $fake);
|
|
|
|
if (strpos($fullname, 'LLLL') < strpos($fullname, 'FFFF')) {
|
|
|
|
return 'lf';
|
|
|
|
} else {
|
|
|
|
return 'fl';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Renders a search form
|
|
|
|
*
|
|
|
|
* @param string $search Search string
|
|
|
|
* @return string HTML
|
|
|
|
*/
|
|
|
|
protected function helper_search_form($search) {
|
|
|
|
global $CFG;
|
|
|
|
require_once($CFG->libdir . '/formslib.php');
|
|
|
|
|
|
|
|
$mform = new MoodleQuickForm('searchform', 'POST', $this->page->url);
|
|
|
|
|
|
|
|
$mform->addElement('hidden', 'sesskey', sesskey());
|
|
|
|
|
|
|
|
$el[] = $mform->createElement('text', 'search', get_string('search'), array('size' => 20));
|
|
|
|
$mform->setDefault('search', $search);
|
|
|
|
$el[] = $mform->createElement('submit', 'submitsearch', get_string('search'));
|
|
|
|
$el[] = $mform->createElement('submit', 'clearsearch', get_string('clear'));
|
|
|
|
$mform->addGroup($el, 'searchgroup', get_string('searchname', 'badges'), ' ', false);
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
$mform->display();
|
|
|
|
$out = ob_get_clean();
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An issued badges for badge.php page
|
|
|
|
*/
|
|
|
|
class issued_badge implements renderable {
|
|
|
|
/** @var issued badge */
|
|
|
|
public $issued;
|
|
|
|
|
|
|
|
/** @var badge recipient */
|
|
|
|
public $recipient = 0;
|
|
|
|
|
|
|
|
/** @var badge visibility to others */
|
|
|
|
public $visible = 0;
|
|
|
|
|
|
|
|
/** @var badge class */
|
|
|
|
public $badgeid = 0;
|
|
|
|
|
|
|
|
/** @var issued badge unique hash */
|
|
|
|
public $hash = "";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the badge to display
|
|
|
|
*
|
|
|
|
* @param string $hash Issued badge hash
|
|
|
|
*/
|
|
|
|
public function __construct($hash) {
|
|
|
|
global $DB;
|
|
|
|
$this->issued = badges_get_issued_badge_info($hash);
|
|
|
|
$this->hash = $hash;
|
|
|
|
|
|
|
|
$rec = $DB->get_record_sql('SELECT userid, visible, badgeid
|
|
|
|
FROM {badge_issued}
|
|
|
|
WHERE ' . $DB->sql_compare_text('uniquehash', 40) . ' = ' . $DB->sql_compare_text(':hash', 40),
|
|
|
|
array('hash' => $hash), IGNORE_MISSING);
|
|
|
|
if ($rec) {
|
|
|
|
$this->recipient = $rec->userid;
|
|
|
|
$this->visible = $rec->visible;
|
|
|
|
$this->badgeid = $rec->badgeid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An external badges for external.php page
|
|
|
|
*/
|
|
|
|
class external_badge implements renderable {
|
|
|
|
/** @var issued badge */
|
|
|
|
public $issued;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the badge to display
|
|
|
|
*
|
|
|
|
* @param string $json External badge information.
|
|
|
|
*/
|
|
|
|
public function __construct($json) {
|
|
|
|
$this->issued = $json;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Badge recipients rendering class
|
|
|
|
*/
|
|
|
|
class badge_recipients implements renderable {
|
|
|
|
/** @var string how are the data sorted */
|
|
|
|
public $sort = 'lastname';
|
|
|
|
|
|
|
|
/** @var string how are the data sorted */
|
|
|
|
public $dir = 'ASC';
|
|
|
|
|
|
|
|
/** @var int page number to display */
|
|
|
|
public $page = 0;
|
|
|
|
|
|
|
|
/** @var int number of badge recipients to display per page */
|
|
|
|
public $perpage = 30;
|
|
|
|
|
|
|
|
/** @var int the total number or badge recipients to display */
|
|
|
|
public $totalcount = null;
|
|
|
|
|
|
|
|
/** @var array internal list of badge recipients ids */
|
|
|
|
public $userids = array();
|
|
|
|
/**
|
|
|
|
* Initializes the list of users to display
|
|
|
|
*
|
|
|
|
* @param array $holders List of badge holders
|
|
|
|
*/
|
|
|
|
public function __construct($holders) {
|
|
|
|
$this->userids = $holders;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Collection of all badges for view.php page
|
|
|
|
*/
|
|
|
|
class badge_collection implements renderable {
|
|
|
|
|
|
|
|
/** @var string how are the data sorted */
|
|
|
|
public $sort = 'name';
|
|
|
|
|
|
|
|
/** @var string how are the data sorted */
|
|
|
|
public $dir = 'ASC';
|
|
|
|
|
|
|
|
/** @var int page number to display */
|
|
|
|
public $page = 0;
|
|
|
|
|
|
|
|
/** @var int number of badges to display per page */
|
|
|
|
public $perpage = BADGE_PERPAGE;
|
|
|
|
|
|
|
|
/** @var int the total number of badges to display */
|
|
|
|
public $totalcount = null;
|
|
|
|
|
|
|
|
/** @var array list of badges */
|
|
|
|
public $badges = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the list of badges to display
|
|
|
|
*
|
|
|
|
* @param array $badges Badges to render
|
|
|
|
*/
|
|
|
|
public function __construct($badges) {
|
|
|
|
$this->badges = $badges;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Collection of badges used at the index.php page
|
|
|
|
*/
|
|
|
|
class badge_management extends badge_collection implements renderable {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Collection of user badges used at the mybadges.php page
|
|
|
|
*/
|
|
|
|
class badge_user_collection extends badge_collection implements renderable {
|
|
|
|
/** @var array backpack settings */
|
2013-04-16 10:47:40 +12:00
|
|
|
public $backpack = null;
|
2013-04-02 13:57:39 +13:00
|
|
|
|
|
|
|
/** @var string search */
|
|
|
|
public $search = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes user badge collection.
|
|
|
|
*
|
|
|
|
* @param array $badges Badges to render
|
|
|
|
* @param int $userid Badges owner
|
|
|
|
*/
|
|
|
|
public function __construct($badges, $userid) {
|
2013-04-16 10:47:40 +12:00
|
|
|
global $CFG;
|
2013-04-02 13:57:39 +13:00
|
|
|
parent::__construct($badges);
|
2013-04-16 10:47:40 +12:00
|
|
|
|
|
|
|
if (!empty($CFG->badges_allowexternalbackpack)) {
|
|
|
|
$this->backpack = get_backpack_settings($userid);
|
|
|
|
}
|
2013-04-02 13:57:39 +13:00
|
|
|
}
|
|
|
|
}
|