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.
34 lines
882 B
34 lines
882 B
<?php
|
|
/* For license terms, see /license.txt */
|
|
|
|
use Chamilo\PluginBundle\Entity\ImsLti\ImsLtiTool;
|
|
|
|
require_once __DIR__.'/../../main/inc/global.inc.php';
|
|
|
|
api_protect_course_script();
|
|
|
|
$em = Database::getManager();
|
|
|
|
/** @var ImsLtiTool $tool */
|
|
$tool = isset($_GET['id']) ? $em->find('ChamiloPluginBundle:ImsLti\ImsLtiTool', intval($_GET['id'])) : null;
|
|
|
|
if (!$tool) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
$imsLtiPlugin = ImsLtiPlugin::create();
|
|
|
|
$pageTitle = Security::remove_XSS($tool->getName());
|
|
|
|
$template = new Template($pageTitle);
|
|
$template->assign('tool', $tool);
|
|
$template->assign(
|
|
'launch_url',
|
|
api_get_path(WEB_PLUGIN_PATH).'ims_lti/form.php?'.http_build_query(['id' => $tool->getId()])
|
|
);
|
|
|
|
$content = $template->fetch('ims_lti/view/start.tpl');
|
|
|
|
$template->assign('header', $pageTitle);
|
|
$template->assign('content', $content);
|
|
$template->display_one_col_template();
|
|
|