芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/badges/classes/form/collections.php
. /** * Form class for mybackpack.php * * @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
*/ namespace core_badges\form; defined('MOODLE_INTERNAL') || die(); require_once($CFG->libdir . '/formslib.php'); require_once($CFG->libdir . '/badgeslib.php'); use html_writer; use moodleform; /** * Form to select backpack collections. * * @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 */ class collections extends moodleform { /** * Defines the form */ public function definition() { global $USER; $mform = $this->_form; $email = $this->_customdata['email']; $backpackweburl = $this->_customdata['backpackweburl']; $selected = $this->_customdata['selected']; if (isset($this->_customdata['groups'])) { $groups = $this->_customdata['groups']; $nogroups = null; } else { $groups = null; $nogroups = $this->_customdata['nogroups']; } $backpack = get_backpack_settings($USER->id); $sitebackpack = badges_get_site_backpack($backpack->backpackid); $mform->addElement('header', 'backpackheader', get_string('backpackconnection', 'badges')); $mform->addHelpButton('backpackheader', 'backpackconnection', 'badges'); $mform->addElement('static', 'url', get_string('url'), $backpackweburl); $status = html_writer::tag('span', get_string('connected', 'badges'), array('class' => 'connected')); $mform->addElement('static', 'status', get_string('status'), $status); $mform->addElement('static', 'email', get_string('email'), $email); $mform->addHelpButton('email', 'backpackemail', 'badges'); $mform->addElement('submit', 'disconnect', get_string('disconnect', 'badges')); $mform->addElement('header', 'collectionheader', get_string('backpackimport', 'badges')); $mform->addHelpButton('collectionheader', 'backpackimport', 'badges'); $hasgroups = false; if (!empty($groups)) { foreach ($groups as $group) { $count = 0; // Handle attributes based on backpack's supported version. if ($sitebackpack->apiversion == OPEN_BADGES_V2) { // OpenBadges v2 data attributes. if (empty($group->published)) { // Only public collections. continue; } // Get the number of badges associated with this collection from the assertions array returned. $count = count($group->assertions); } else { // OpenBadges v1 data attributes. $group->entityId = $group->groupId; // Get the number of badges associated with this collection. In that case, the number is returned directly. $count = $group->badges; } if (!$hasgroups) { $mform->addElement('static', 'selectgroup', '', get_string('selectgroup_start', 'badges')); } $hasgroups = true; $name = $group->name . ' (' . $count . ')'; $mform->addElement( 'advcheckbox', 'group[' . $group->entityId . ']', null, $name, array('group' => 1), array(false, $group->entityId) ); if (in_array($group->entityId, $selected)) { $mform->setDefault('group[' . $group->entityId . ']', $group->entityId); } } $mform->addElement('static', 'selectgroup', '', get_string('selectgroup_end', 'badges', $backpackweburl)); } if (!$hasgroups) { $mform->addElement('static', 'selectgroup', '', $nogroups); } $this->add_action_buttons(); } }