Remove unused files - refs BT#9583 #7385
parent
e1f3027dad
commit
398a80e7c4
@ -1,35 +0,0 @@ |
||||
<?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; |
||||
|
||||
require_once '../inc/global.inc.php'; |
||||
|
||||
if (!api_is_platform_admin() || api_get_setting('allow_skills_tool') !== 'true') { |
||||
api_not_allowed(true); |
||||
} |
||||
|
||||
|
||||
$this_section = SECTION_PLATFORM_ADMIN; |
||||
|
||||
$interbreadcrumb = array( |
||||
array( |
||||
'url' => api_get_path(WEB_CODE_PATH) . 'admin/index.php', |
||||
'name' => get_lang('Administration') |
||||
), |
||||
array( |
||||
'url' => api_get_path(WEB_CODE_PATH) . 'admin/skill_badge.php', |
||||
'name' => get_lang('Badges') |
||||
) |
||||
); |
||||
|
||||
$tpl = new Template(get_lang('IssuerDetails')); |
||||
|
||||
|
||||
$contentTemplate = $tpl->get_template('skill/badge_issuer.tpl'); |
||||
|
||||
$tpl->display($contentTemplate); |
@ -1,55 +0,0 @@ |
||||
{% extends "default/layout/main.tpl" %} |
||||
|
||||
{% block body %} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="span12"> |
||||
|
||||
<ul class="nav nav-tabs"> |
||||
<li> |
||||
<a href="{{ _p.web_main }}admin/skill_badge.php">{{ 'Home' | get_lang }}</a> |
||||
</li> |
||||
<li > |
||||
<a href="{{ _p.web_main }}admin/skill_badge_list.php">{{ 'IssuerDetails' | get_lang }}</a> |
||||
</li> |
||||
<li class="active"> |
||||
<a href="{{ _p.web_main }}admin/skill_badge_help.php">{{ 'Skills' | get_lang }}</a> |
||||
</li> |
||||
</ul> |
||||
<div class="tab-content"> |
||||
<div class="tab-pane active"> |
||||
<form action="{{ _p.web_self }}" class="form-horizontal"> |
||||
<fieldset> |
||||
<legend>{{ 'IssuerDetails' | get_lang }}</legend> |
||||
<div class="control-group"> |
||||
<label class="control-label">{{ 'Name' | get_lang }}</label> |
||||
<div class="controls"> |
||||
<span class="uneditable-input input-xxlarge">{{ _s.institution }}</span> |
||||
</div> |
||||
</div> |
||||
<div class="control-group"> |
||||
<label class="control-label">{{ 'URL' | get_lang }}</label> |
||||
<div class="controls"> |
||||
<span class="uneditable-input input-xxlarge">{{ _p.web }}</span> |
||||
</div> |
||||
</div> |
||||
</fieldset> |
||||
<fieldset> |
||||
<legend>{{ 'BackpackDetails' | get_lang }}</legend> |
||||
<div class="control-group"> |
||||
<label class="control-label">{{ 'URL' | get_lang }}</label> |
||||
<div class="controls"> |
||||
<span class="uneditable-input input-xxlarge">{{ backpack }}</span> |
||||
<p class="help-block">{{ 'TheBadgesWillBeSentToThatBackpack' | get_lang }}</p> |
||||
</div> |
||||
</div> |
||||
</fieldset> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
{% endblock %} |
Loading…
Reference in new issue