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.
57 lines
1.6 KiB
57 lines
1.6 KiB
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
require_once __DIR__.'/../inc/global.inc.php';
|
|
|
|
api_protect_course_script(true);
|
|
|
|
Event::event_access_tool(TOOL_CHAT);
|
|
|
|
$logInfo = [
|
|
'tool' => TOOL_CHAT,
|
|
'action' => 'start',
|
|
'action_details' => 'start-chat',
|
|
];
|
|
Event::registerLog($logInfo);
|
|
|
|
// View
|
|
$externalCSS = [
|
|
//'jquery-emojiarea/jquery.emojiarea.css',
|
|
//'jquery-textcomplete/jquery.textcomplete.css',
|
|
//'emojione/css/emojione.min.css',
|
|
//'emojione/css/autocomplete.css',
|
|
'highlight/styles/github.css',
|
|
];
|
|
|
|
foreach ($externalCSS as $css) {
|
|
$htmlHeadXtra[] = api_get_css(api_get_path(WEB_LIBRARY_JS_PATH).$css);
|
|
}
|
|
|
|
$htmlHeadXtra[] = api_get_css(api_get_path(WEB_CSS_PATH).'chat.css');
|
|
$htmlHeadXtra[] = api_get_css(api_get_path(WEB_CSS_PATH).'markdown.css');
|
|
|
|
$externalJS = [
|
|
'highlight/highlight.pack.js',
|
|
//'jquery-textcomplete/jquery.textcomplete.js',
|
|
//'emojione/js/emojione.min.js',
|
|
//'jquery-emojiarea/jquery.emojiarea.js',
|
|
];
|
|
|
|
foreach ($externalJS as $js) {
|
|
$htmlHeadXtra[] = api_get_js($js);
|
|
}
|
|
|
|
$iconList = [];
|
|
|
|
$view = new Template(get_lang('Chat'), false, false, false, true, false);
|
|
$view->assign('icons', $iconList);
|
|
$view->assign('emoji_strategy', CourseChatUtils::getEmojiStrategy());
|
|
//$view->assign('emoji_smile', \Emojione\Emojione::toImage(':smile:'));
|
|
$view->assign('restrict_to_coach', ('true' === api_get_setting('chat.course_chat_restrict_to_coach')));
|
|
$view->assign('user', api_get_user_info());
|
|
$template = $view->get_template('chat/chat.tpl');
|
|
$content = $view->fetch($template);
|
|
|
|
$view->assign('content', $content);
|
|
$view->display_no_layout_template();
|
|
|