get_toc(); $is_allowed_to_edit = api_is_allowed_to_edit(null, true, false, false); if ($is_allowed_to_edit) { echo '
'; global $interbreadcrumb; $interbreadcrumb[] = [ 'url' => 'lp_controller.php?action=list&isStudentView=false&'.api_get_cidreq(), 'name' => get_lang('LearningPaths'), ]; $interbreadcrumb[] = [ 'url' => api_get_self()."?action=add_item&type=step&lp_id=".$lp->lp_id."&isStudentView=false&".api_get_cidreq(), 'name' => $lp->get_name(), ]; $interbreadcrumb[] = ['url' => '#', 'name' => get_lang('Preview')]; echo return_breadcrumb($interbreadcrumb, null, null); echo '
'; } $html = ''; $step = 1; foreach ($list as $toc) { $x = 1000 * $step; $html .= '
'; $html .= '
'; $src = $lp->get_link('http', $toc['id']); if ($toc['type'] !== 'dir') { //just showing the src in a iframe ... $html .= '

'.$toc['title'].'

'; $html .= ''; } else { $html .= "
"; $html .= '

'.$toc['title'].'

'; $html .= "
"; } $html .= "
"; $html .= "
"; $step++; } //Setting the template $tool_name = get_lang('ViewModeImpress'); $tpl = new Template($tool_name, false, false, true); $tpl->assign('html', $html); $templateName = $tpl->get_template('learnpath/impress.tpl'); $content = $tpl->fetch($templateName); $tpl->assign('content', $content); $tpl->display_one_col_template();