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.
72 lines
1.9 KiB
72 lines
1.9 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
use Chamilo\PluginBundle\Entity\EmbedRegistry\Embed;
|
|
|
|
require_once __DIR__.'/../../main/inc/global.inc.php';
|
|
|
|
api_block_anonymous_users();
|
|
api_protect_course_script(true);
|
|
|
|
$plugin = EmbedRegistryPlugin::create();
|
|
|
|
if ('false' === $plugin->get(EmbedRegistryPlugin::SETTING_ENABLED)) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
$isAllowedToEdit = api_is_allowed_to_edit(true);
|
|
|
|
$em = Database::getManager();
|
|
$embedRepo = $em->getRepository('ChamiloPluginBundle:EmbedRegistry\Embed');
|
|
|
|
$course = api_get_course_entity(api_get_course_int_id());
|
|
$session = api_get_session_entity(api_get_session_id());
|
|
|
|
$embedId = isset($_REQUEST['id']) ? (int) $_REQUEST['id'] : 0;
|
|
|
|
if (!$embedId) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
/** @var Embed|null $embed */
|
|
$embed = $embedRepo->find($embedId);
|
|
|
|
if (!$embed) {
|
|
api_not_allowed(
|
|
true,
|
|
Display::return_message($plugin->get_lang('ContentNotFound'), 'danger')
|
|
);
|
|
}
|
|
|
|
if ($course->getId() !== $embed->getCourse()->getId()) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
if ($session && $embed->getSession()) {
|
|
if ($session->getId() !== $embed->getSession()->getId()) {
|
|
api_not_allowed(true);
|
|
}
|
|
}
|
|
|
|
$plugin->saveEventAccessTool();
|
|
|
|
$interbreadcrumb[] = [
|
|
'name' => $plugin->getToolTitle(),
|
|
'url' => api_get_path(WEB_PLUGIN_PATH).$plugin->get_name().'/start.php',
|
|
];
|
|
|
|
$actions = Display::url(
|
|
Display::return_icon('back.png', get_lang('Back'), [], ICON_SIZE_MEDIUM),
|
|
api_get_path(WEB_PLUGIN_PATH).$plugin->get_name().'/start.php?'.api_get_cidreq()
|
|
);
|
|
|
|
$view = new Template($embed->getTitle());
|
|
$view->assign('header', $embed->getTitle());
|
|
$view->assign('actions', Display::toolbarAction($plugin->get_name(), [$actions]));
|
|
$view->assign(
|
|
'content',
|
|
'<p>'.$plugin->formatDisplayDate($embed).'</p>'
|
|
.PHP_EOL
|
|
.Security::remove_XSS($embed->getHtmlCode(), COURSEMANAGERLOWSECURITY)
|
|
);
|
|
$view->display_one_col_template();
|
|
|