Merge branch 'MDL-42072_25' of https://github.com/totara/openbadges into MOODLE_25_STABLE
This commit is contained in:
@@ -41,6 +41,8 @@ $result = badges_check_backpack_accessibility();
|
||||
$outcome = new stdClass();
|
||||
$outcome->code = $result;
|
||||
$outcome->response = get_string('error:backpacknotavailable', 'badges') . $OUTPUT->help_icon('backpackavailability', 'badges');
|
||||
|
||||
echo $OUTPUT->header();
|
||||
echo json_encode($outcome);
|
||||
|
||||
die();
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
* @author Yuliya Bozhko <[email protected]>
|
||||
*/
|
||||
|
||||
define('AJAX_SCRIPT', true);
|
||||
|
||||
require_once(dirname(dirname(__FILE__)) . '/config.php');
|
||||
require_once($CFG->libdir . '/badgeslib.php');
|
||||
|
||||
@@ -35,6 +37,5 @@ $hash = required_param('b', PARAM_ALPHANUM);
|
||||
|
||||
$badge = badges_get_issued_badge_info($hash);
|
||||
|
||||
header('Content-type: application/json; charset=utf-8');
|
||||
|
||||
echo $OUTPUT->header();
|
||||
echo json_encode($badge);
|
||||
@@ -34,6 +34,7 @@ require_sesskey();
|
||||
require_login();
|
||||
$PAGE->set_url('/badges/backpackconnect.php');
|
||||
$PAGE->set_context(context_system::instance());
|
||||
echo $OUTPUT->header();
|
||||
|
||||
// Use PHP input filtering as there is no PARAM type for
|
||||
// the type of cleaning that is required (ASCII chars 32-127 only).
|
||||
|
||||
Reference in New Issue
Block a user