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();