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.
26 lines
599 B
26 lines
599 B
![]()
11 years ago
|
<?php
|
||
|
/* For licensing terms, see /license.txt */
|
||
|
/**
|
||
|
* Show information about Mozilla OpenBadges
|
||
|
* @author Angel Fernando Quiroz Campos <angel.quiroz@beeznest.com>
|
||
|
* @package chamilo.admin.openbadges
|
||
|
*/
|
||
|
$cidReset = true;
|
||
|
|
||
![]()
11 years ago
|
require_once '../inc/global.inc.php';
|
||
![]()
11 years ago
|
|
||
|
$this_section = SECTION_PLATFORM_ADMIN;
|
||
|
|
||
|
$interbreadcrumb = array(
|
||
|
array(
|
||
|
'url' => api_get_path(WEB_CODE_PATH) . 'admin/index.php',
|
||
|
'name' => get_lang('Administration')
|
||
|
)
|
||
|
);
|
||
|
|
||
![]()
11 years ago
|
$tpl = new Template(get_lang('Badges'));
|
||
![]()
11 years ago
|
|
||
![]()
11 years ago
|
$contentTemplate = $tpl->get_template('skill/badge.tpl');
|
||
![]()
11 years ago
|
|
||
|
$tpl->display($contentTemplate);
|