Merge branch 'MDL-42072_25' of https://github.com/totara/openbadges into MOODLE_25_STABLE

This commit is contained in:
Sam Hemelryk
2013-10-07 15:39:42 +13:00
3 changed files with 6 additions and 2 deletions
+2
View File
@@ -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();
+3 -2
View File
@@ -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);
+1
View File
@@ -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).