芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/badges/alignment_action.php
. /** * Processing actions with alignments. * * @package core * @subpackage badges * @copyright 2018 Tung Thai * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @author Tung Thai
*/ require_once(__DIR__ . '/../config.php'); require_once($CFG->libdir . '/badgeslib.php'); $alignmentid = required_param('alignmentid', PARAM_INT); // Related badge ID. $badgeid = required_param('id', PARAM_INT); // Badge ID. $action = optional_param('action', 'remove', PARAM_TEXT); // Remove. require_login(); $return = new moodle_url('/badges/alignment.php', array('id' => $badgeid)); $badge = new badge($badgeid); $context = $badge->get_context(); require_capability('moodle/badges:configuredetails', $context); if ($action == 'remove') { $badge->delete_alignment($alignmentid); } redirect($return);