You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
391 B
19 lines
391 B
![]()
11 years ago
|
<?php
|
||
|
/* For licensing terms, see /license.txt */
|
||
![]()
8 years ago
|
|
||
![]()
11 years ago
|
/**
|
||
![]()
8 years ago
|
* Show information about the OpenBadge issuer.
|
||
|
*
|
||
![]()
11 years ago
|
* @author Angel Fernando Quiroz Campos <angel.quiroz@beeznest.com>
|
||
|
*/
|
||
![]()
9 years ago
|
require_once __DIR__.'/../inc/global.inc.php';
|
||
![]()
11 years ago
|
|
||
![]()
8 years ago
|
$json = [
|
||
![]()
11 years ago
|
'name' => api_get_setting('Institution'),
|
||
![]()
8 years ago
|
'url' => api_get_path(WEB_PATH),
|
||
![]()
8 years ago
|
];
|
||
![]()
11 years ago
|
|
||
![]()
7 years ago
|
header('Content-Type: application/json');
|
||
|
|
||
![]()
8 years ago
|
echo json_encode($json);
|