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.
36 lines
1.0 KiB
36 lines
1.0 KiB
|
8 years ago
|
<?php
|
||
|
|
/**
|
||
|
|
* This script initiates a notebookteacher plugin.
|
||
|
|
*
|
||
|
|
* @package chamilo.plugin.notebookteacher
|
||
|
|
*/
|
||
|
|
|
||
|
|
$course_plugin = 'notebookteacher';
|
||
|
|
require_once __DIR__.'/config.php';
|
||
|
|
|
||
|
|
$plugin = NotebookTeacherPlugin::create();
|
||
|
|
$enable = $plugin->get('enable_plugin_notebookteacher') == 'true';
|
||
|
|
|
||
|
|
if ($enable) {
|
||
|
|
if (api_is_teacher() || api_is_drh()) {
|
||
|
|
$url = 'src/index.php?'.api_get_cidreq();
|
||
|
|
header('Location: ' . $url);
|
||
|
|
exit;
|
||
|
|
} else {
|
||
|
|
/** @var \Chamilo\CoreBundle\Entity\Session $session */
|
||
|
|
$session = Database::getManager()
|
||
|
|
->find('ChamiloCoreBundle:Session', api_get_session_id());
|
||
|
|
$_course = api_get_course_info();
|
||
|
|
$webCoursePath = api_get_path(WEB_COURSE_PATH);
|
||
|
|
$url = $webCoursePath.$_course['path'].'/index.php'.($session ? '?id_session='.$session->getId() : '');
|
||
|
|
|
||
|
|
Display::addFlash(
|
||
|
|
Display::return_message($plugin->get_lang('ToolForTeacher'))
|
||
|
|
);
|
||
|
|
|
||
|
|
header('Location: ' . $url);
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
echo $plugin->get_lang('ToolDisabled');
|
||
|
|
}
|