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.
438 lines
19 KiB
438 lines
19 KiB
<?php
|
|
|
|
/*===============================================*\
|
|
|| ############################################# ||
|
|
|| # JAKWEB.CH / Version 2.1.4 # ||
|
|
|| # ----------------------------------------- # ||
|
|
|| # Copyright 2023 JAKWEB All Rights Reserved # ||
|
|
|| ############################################# ||
|
|
\*===============================================*/
|
|
|
|
// Check if the file is accessed only via index.php if not stop the script from running
|
|
if (!defined('JAK_ADMIN_PREVENT_ACCESS')) die('You cannot access this file directly.');
|
|
|
|
// All the tables we need for this plugin
|
|
$errors = array();
|
|
$jaktable = 'chatwidget';
|
|
$jaktable1 = 'departments';
|
|
$jaktable2 = 'user';
|
|
$jaktable3 = 'chatsettings';
|
|
|
|
// Now start with the plugin use a switch to access all pages
|
|
switch ($page1) {
|
|
|
|
case 'support':
|
|
|
|
// Check if the user has access to this file
|
|
if (!jak_get_access("support", $jakuser->getVar("permissions"), JAK_MAIN_OP)) jak_redirect(BASE_URL);
|
|
|
|
// Title and Description
|
|
$SECTION_TITLE = $jkl["hd16"];
|
|
$SECTION_DESC = "";
|
|
|
|
// Include the javascript file for results
|
|
$js_file_footer = 'js_editwidget.php';
|
|
|
|
// Call the template
|
|
$template = 'hd3widget.php';
|
|
break;
|
|
|
|
case 'faq':
|
|
|
|
// Check if the user has access to this file
|
|
if (!jak_get_access("faq", $jakuser->getVar("permissions"), JAK_MAIN_OP)) jak_redirect(BASE_URL);
|
|
|
|
// Title and Description
|
|
$SECTION_TITLE = $jkl["hd17"];
|
|
$SECTION_DESC = "";
|
|
|
|
// Include the javascript file for results
|
|
$js_file_footer = 'js_editwidget.php';
|
|
|
|
// Call the template
|
|
$template = 'hd3widget.php';
|
|
|
|
break;
|
|
|
|
case 'delete':
|
|
|
|
// Check if the user has access to this file
|
|
if (!jak_get_access("widget", $jakuser->getVar("permissions"), JAK_MAIN_OP)) jak_redirect(BASE_URL);
|
|
|
|
// Check if user exists and can be deleted
|
|
if (is_numeric($page2) && jak_row_exist($page2, $opcacheid, $jaktable)) {
|
|
|
|
$count = $jakdb->count($jaktable, ["AND" => ["opid" => $opcacheid]]);
|
|
|
|
// Now check how many languages are installed and do the dirty work
|
|
if ($count > 1) {
|
|
|
|
// Now check how many languages are installed and do the dirty work
|
|
$result = $jakdb->delete($jaktable, ["AND" => ["id" => $page2, "opid" => $opcacheid]]);
|
|
|
|
}
|
|
|
|
if (!$result) {
|
|
|
|
$_SESSION["infomsg"] = $jkl['i'];
|
|
jak_redirect($_SESSION['LCRedirect']);
|
|
} else {
|
|
|
|
// Now let us delete the user cache file
|
|
$cachestufffile = APP_PATH.JAK_CACHE_DIRECTORY.'/opcache'.$opcacheid.'.php';
|
|
if (file_exists($cachestufffile)) {
|
|
unlink($cachestufffile);
|
|
}
|
|
|
|
// Write the log file each time someone login after to show success
|
|
JAK_base::jakWhatslog('', $opcacheid, JAK_USERID, 0, 33, $page2, (isset($_COOKIE['WIOgeoData']) ? $_COOKIE['WIOgeoData'] : ''), $jakuser->getVar("username"), $_SERVER['REQUEST_URI'], $ipa, $valid_agent);
|
|
|
|
$_SESSION["successmsg"] = $jkl['g14'];
|
|
jak_redirect($_SESSION['LCRedirect']);
|
|
}
|
|
|
|
} else {
|
|
|
|
$_SESSION["errormsg"] = $jkl['i3'];
|
|
jak_redirect($_SESSION['LCRedirect']);
|
|
}
|
|
|
|
break;
|
|
case 'edit':
|
|
|
|
// Check if the user has access to this file
|
|
if (!jak_get_access("widget", $jakuser->getVar("permissions"), JAK_MAIN_OP)) jak_redirect(BASE_URL);
|
|
|
|
// Check if the user exists
|
|
if (is_numeric($page2) && jak_row_exist($page2, $opcacheid, $jaktable)) {
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
$jkp = $_POST;
|
|
|
|
if (empty($jkp['title'])) {
|
|
$errors['e'] = $jkl['e2'];
|
|
}
|
|
|
|
if (count($errors) == 0) {
|
|
|
|
// Chat departments
|
|
if ((!isset($jkp['jak_depid']) || $jkp['jak_depid'] == 0) || (is_array($jkp['jak_depid']) && in_array("0", $jkp['jak_depid']))) {
|
|
$depa = 0;
|
|
} else {
|
|
$depa = join(',', $jkp['jak_depid']);
|
|
}
|
|
|
|
// Clean the dsgvo link
|
|
include_once '../include/htmlawed.php';
|
|
$htmlconfig = array('comment'=>0, 'cdata'=>1, 'elements'=>'a, strong');
|
|
$dsgvo_clean = htmLawed($_REQUEST['jak_dsgvo'], $htmlconfig);
|
|
|
|
// Update the database
|
|
$result = $jakdb->update($jaktable, ["title" => $jkp['title'],
|
|
"depid" => $depa,
|
|
"singleopid" => $jkp['jak_opid'],
|
|
"lang" => $jkp['jak_lang'],
|
|
"feedback" => $jkp['jak_feedback'],
|
|
"hidewhenoff" => $jkp['jak_hidewhenoff'],
|
|
"onlymembers" => $jkp['jak_onlymembers'],
|
|
"chatgpt" => $jkp['jak_chatgpt'],
|
|
"chatgpt_helpful" => $jkp['jak_chatgpt_helpful'],
|
|
"redirect_active" => $jkp['redirect_active'],
|
|
"redirect_url" => $jkp['url_red'],
|
|
"redirect_after" => $jkp['jak_redi_contact'],
|
|
"dsgvo" => $dsgvo_clean,
|
|
"template" => $jkp['chatSty'],
|
|
"avatarset" => $jkp['avatarset'],
|
|
"btn_tpl" => $jkp['jak_btn_tpl'],
|
|
"start_tpl" => $jkp['jak_start_tpl'],
|
|
"chat_tpl" => $jkp['jak_chat_tpl'],
|
|
"contact_tpl" => $jkp['jak_contact_tpl'],
|
|
"profile_tpl" => $jkp['jak_profile_tpl'],
|
|
"feedback_tpl" => $jkp['jak_feedback_tpl'],
|
|
"updated" => $jakdb->raw("NOW()")], ["AND" => ["id" => $page2, "opid" => $opcacheid]]);
|
|
|
|
if (!$result) {
|
|
$_SESSION["infomsg"] = $jkl['i'];
|
|
jak_redirect($_SESSION['LCRedirect']);
|
|
} else {
|
|
|
|
// We have custom chat settings field, let us save them
|
|
if (isset($jkp['chatsettings']) && !empty($jkp['chatsettings'])) {
|
|
|
|
// Now let us go through the fields
|
|
foreach ($jkp['chatsettings'] as $v) {
|
|
|
|
// Get the correct value
|
|
$fvstore = explode(":#:", $v);
|
|
|
|
if ($jakdb->has($jaktable3, ["AND" => ["opid" => $opcacheid, "widgetid" => $page2, "template" => $jkp['chatSty'], "formtype" => $fvstore[1], "settname" => $fvstore[0]]])) {
|
|
$jakdb->update($jaktable3, ["settvalue" => jak_widget_settings($jkp[$fvstore[0]]), "updated" => $jakdb->raw("NOW()")], ["AND" => ["opid" => $opcacheid, "widgetid" => $page2, "template" => $jkp['chatSty'], "formtype" => $fvstore[1], "settname" => $fvstore[0]]]);
|
|
} else {
|
|
if (isset($jkp[$fvstore[0]]) && !empty($jkp[$fvstore[0]])) {
|
|
$jakdb->insert($jaktable3, ["opid" => $opcacheid, "widgetid" => $page2, "template" => $jkp['chatSty'], "formtype" => $fvstore[1], "lang" => JAK_LANG, "settname" => $fvstore[0], "settvalue" => jak_widget_settings($jkp[$fvstore[0]]), "updated" => $jakdb->raw("NOW()"), "created" => $jakdb->raw("NOW()")]);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
// We need to remove the chat custom options if the template has been changed
|
|
if (isset($jkp['jak_btn_tpl']) && !empty($jkp['jak_btn_tpl']) && isset($jkp['jak_btn_tpl_old']) && !empty($jkp['jak_btn_tpl_old']) && $jkp['jak_btn_tpl'] != $jkp['jak_btn_tpl_old']) {
|
|
jak_remove_chat_options($opcacheid, "btn_form", $page2);
|
|
|
|
// For the button we have custom stuff to insert so we don't get lost
|
|
$btn_config = APP_PATH.'lctemplate/'.$jkp['chatSty'].'/tplblocks/btn/'.$jkp['jak_btn_tpl'];
|
|
if (file_exists($btn_config)) include_once $btn_config;
|
|
if (isset($wtplsett["standardvars"]) && is_array($wtplsett["standardvars"])) {
|
|
|
|
foreach($wtplsett["standardvars"] as $k => $v) {
|
|
$jakdb->insert($jaktable3, ["opid" => $opcacheid, "widgetid" => $page2, "template" => $jkp['chatSty'], "formtype" => "btn_form", "lang" => JAK_LANG, "settname" => $k, "settvalue" => jak_widget_settings($v), "updated" => $jakdb->raw("NOW()"), "created" => $jakdb->raw("NOW()")]);
|
|
}
|
|
}
|
|
|
|
}
|
|
if (isset($jkp['jak_start_tpl']) && !empty($jkp['jak_start_tpl']) && isset($jkp['jak_start_tpl_old']) && !empty($jkp['jak_start_tpl_old']) && $jkp['jak_start_tpl'] != $jkp['jak_start_tpl_old']) {
|
|
jak_remove_chat_options($opcacheid, "start_form", $page2);
|
|
}
|
|
if (isset($jkp['jak_chat_tpl']) && !empty($jkp['jak_chat_tpl']) && isset($jkp['jak_chat_tpl_old']) && !empty($jkp['jak_chat_tpl_old']) && $jkp['jak_chat_tpl'] != $jkp['jak_chat_tpl_old']) {
|
|
jak_remove_chat_options($opcacheid, "chat_form", $page2);
|
|
}
|
|
if (isset($jkp['jak_contact_tpl']) && !empty($jkp['jak_contact_tpl']) && isset($jkp['jak_contact_tpl_old']) && !empty($jkp['jak_contact_tpl_old']) && $jkp['jak_contact_tpl'] != $jkp['jak_contact_tpl_old']) {
|
|
jak_remove_chat_options($opcacheid, "contact_form", $page2);
|
|
}
|
|
if (isset($jkp['jak_profile_tpl']) && !empty($jkp['jak_profile_tpl']) && isset($jkp['jak_profile_tpl_old']) && !empty($jkp['jak_profile_tpl_old']) && $jkp['jak_profile_tpl'] != $jkp['jak_profile_tpl_old']) {
|
|
jak_remove_chat_options($opcacheid, "profile_form", $page2);
|
|
}
|
|
if (isset($jkp['jak_feedback_tpl']) && !empty($jkp['jak_feedback_tpl']) && isset($jkp['jak_feedback_tpl_old']) && !empty($jkp['jak_feedback_tpl_old']) && $jkp['jak_feedback_tpl'] != $jkp['jak_feedback_tpl_old']) {
|
|
jak_remove_chat_options($opcacheid, "feedback_form", $page2);
|
|
}
|
|
|
|
// Now let us delete the user cache file
|
|
$cachestufffile = APP_PATH.JAK_CACHE_DIRECTORY.'/opcache'.$opcacheid.'.php';
|
|
if (file_exists($cachestufffile)) {
|
|
unlink($cachestufffile);
|
|
}
|
|
|
|
// Write the log file each time someone login after to show success
|
|
JAK_base::jakWhatslog('', $opcacheid, JAK_USERID, 0, 18, $page2, (isset($_COOKIE['WIOgeoData']) ? $_COOKIE['WIOgeoData'] : ''), $jakuser->getVar("username"), $_SERVER['REQUEST_URI'], $ipa, $valid_agent);
|
|
|
|
$_SESSION["successmsg"] = $jkl['g14'];
|
|
jak_redirect($_SESSION['LCRedirect']);
|
|
}
|
|
|
|
// Output the errors
|
|
} else {
|
|
$errors = $errors;
|
|
}
|
|
|
|
}
|
|
|
|
// Title and Description
|
|
$SECTION_TITLE = $jkl["g290"];
|
|
$SECTION_DESC = "";
|
|
|
|
// Get all departments
|
|
$JAK_DEPARTMENTS = $jakdb->select($jaktable1, ["id", "title"], ["opid" => $opcacheid, "ORDER" => ["dorder" => "ASC"]]);
|
|
|
|
// Get all operators
|
|
$JAK_OPERATORS = $jakdb->select($jaktable2, ["id", "username"], ["OR" => ["id" => $opcacheid, "opid" => $opcacheid], "ORDER" => ["username" => "ASC"]]);
|
|
|
|
// Call the settings function
|
|
$lang_files = jak_get_lang_files();
|
|
|
|
// Call the packages
|
|
$chat_templates = jak_get_chat_templates();
|
|
|
|
// Get all buttons
|
|
$BUTTONS_ALL = jak_get_files(APP_PATH.JAK_FILES_DIRECTORY.'/buttons');
|
|
|
|
// Get all slideup
|
|
$SLIDEIMG_ALL = jak_get_files(APP_PATH.JAK_FILES_DIRECTORY.'/slideimg');
|
|
|
|
// Get all buttons from user
|
|
if (is_dir(APP_PATH.JAK_FILES_DIRECTORY.'/buttons/'.$opcacheid)) $BUTTONS_ALL_USR = jak_get_custom_files(APP_PATH.JAK_FILES_DIRECTORY.'/buttons/'.$opcacheid, $opcacheid);
|
|
|
|
// Get all slideup from user
|
|
if (is_dir(APP_PATH.JAK_FILES_DIRECTORY.'/slideimg/'.$opcacheid)) $SLIDEIMG_ALL_USR = jak_get_custom_files(APP_PATH.JAK_FILES_DIRECTORY.'/slideimg/'.$opcacheid, $opcacheid);
|
|
|
|
// If we have custom images
|
|
if (isset($BUTTONS_ALL_USR) && !empty($BUTTONS_ALL_USR)) $BUTTONS_ALL = array_merge($BUTTONS_ALL, $BUTTONS_ALL_USR);
|
|
if (isset($SLIDEIMG_ALL_USR) && !empty($SLIDEIMG_ALL_USR)) $SLIDEIMG_ALL = array_merge($SLIDEIMG_ALL, $SLIDEIMG_ALL_USR);
|
|
|
|
$JAK_FORM_DATA = jak_get_data($page2, $opcacheid, $jaktable);
|
|
|
|
// We have a template, let's get the designs
|
|
if (isset($JAK_FORM_DATA['template']) && !empty($JAK_FORM_DATA['template'])) {
|
|
// Get all design files
|
|
$btn_tpl = jak_get_templates_files(APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/btn/');
|
|
$start_tpl = jak_get_templates_files(APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/start/');
|
|
$chat_tpl = jak_get_templates_files(APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/chat/');
|
|
$contact_tpl = jak_get_templates_files(APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/contact/');
|
|
$profile_tpl = jak_get_templates_files(APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/profile/');
|
|
$feedback_tpl = jak_get_templates_files(APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/feedback/');
|
|
}
|
|
|
|
// We have a template and design files for button
|
|
if (isset($JAK_FORM_DATA["btn_tpl"]) && !empty($JAK_FORM_DATA['btn_tpl'])) {
|
|
$btn_config = APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/btn/'.$JAK_FORM_DATA['btn_tpl'];
|
|
if (file_exists($btn_config)) include_once $btn_config;
|
|
|
|
// Get the options for the selected button
|
|
$btn_form = jak_get_custom_fields_tpl($opcacheid, $page2, $JAK_FORM_DATA['template'], "btn_form", $btnsett["formoptions"], $BUTTONS_ALL, $SLIDEIMG_ALL);
|
|
}
|
|
|
|
// We have a template and design files for start
|
|
if (isset($JAK_FORM_DATA["start_tpl"]) && !empty($JAK_FORM_DATA['start_tpl'])) {
|
|
$start_config = APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/start/'.$JAK_FORM_DATA['start_tpl'];
|
|
if (file_exists($start_config)) include_once $start_config;
|
|
|
|
// Get the options for the selected button
|
|
$start_form = jak_get_custom_fields_tpl($opcacheid, $page2, $JAK_FORM_DATA['template'], "start_form", $startsett["formoptions"], "", "");
|
|
}
|
|
|
|
// We have a template and design files for chat
|
|
if (isset($JAK_FORM_DATA["chat_tpl"]) && !empty($JAK_FORM_DATA['chat_tpl'])) {
|
|
$chat_config = APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/chat/'.$JAK_FORM_DATA['chat_tpl'];
|
|
if (file_exists($chat_config)) include_once $chat_config;
|
|
|
|
// Get the options for the selected button
|
|
$chat_form = jak_get_custom_fields_tpl($opcacheid, $page2, $JAK_FORM_DATA['template'], "chat_form", $chatsett["formoptions"], "", "");
|
|
}
|
|
|
|
// We have a template and design files for contact
|
|
if (isset($JAK_FORM_DATA["contact_tpl"]) && !empty($JAK_FORM_DATA['contact_tpl'])) {
|
|
$contact_config = APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/contact/'.$JAK_FORM_DATA['contact_tpl'];
|
|
if (file_exists($contact_config)) include_once $contact_config;
|
|
|
|
// Get the options for the selected button
|
|
$contact_form = jak_get_custom_fields_tpl($opcacheid, $page2, $JAK_FORM_DATA['template'], "contact_form", $contactsett["formoptions"], "", "");
|
|
}
|
|
|
|
// We have a template and design files for profile
|
|
if (isset($JAK_FORM_DATA["profile_tpl"]) && !empty($JAK_FORM_DATA['profile_tpl'])) {
|
|
$profile_config = APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/profile/'.$JAK_FORM_DATA['profile_tpl'];
|
|
if (file_exists($profile_config)) include_once $profile_config;
|
|
|
|
// Get the options for the selected button
|
|
$profile_form = jak_get_custom_fields_tpl($opcacheid, $page2, $JAK_FORM_DATA['template'], "profile_form", $profilesett["formoptions"], "", "");
|
|
}
|
|
|
|
// We have a template and design files for feedback
|
|
if (isset($JAK_FORM_DATA["feedback_tpl"]) && !empty($JAK_FORM_DATA['feedback_tpl'])) {
|
|
$feedback_config = APP_PATH.'lctemplate/'.$JAK_FORM_DATA['template'].'/tplblocks/feedback/'.$JAK_FORM_DATA['feedback_tpl'];
|
|
if (file_exists($feedback_config)) include_once $feedback_config;
|
|
|
|
// Get the options for the selected button
|
|
$feedback_form = jak_get_custom_fields_tpl($opcacheid, $page2, $JAK_FORM_DATA['template'], "feedback_form", $feedbacksett["formoptions"], "", "");
|
|
}
|
|
|
|
// Call the avatar sets
|
|
$avatar_sets = jak_get_avatar_sets($JAK_FORM_DATA['template']);
|
|
$avatar_images = jak_get_avatar_images($JAK_FORM_DATA['template'], $JAK_FORM_DATA['avatarset']);
|
|
|
|
// Include the javascript file for results
|
|
$js_file_footer = 'js_editwidget.php';
|
|
$template = 'editwidget.php';
|
|
|
|
} else {
|
|
|
|
$_SESSION["errormsg"] = $jkl['i3'];
|
|
jak_redirect($_SESSION['LCRedirect']);
|
|
}
|
|
|
|
break;
|
|
default:
|
|
|
|
// Check if the user has access to this file
|
|
if (!jak_get_access("widget", $jakuser->getVar("permissions"), JAK_MAIN_OP)) jak_redirect(BASE_URL);
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['create_widget'])) {
|
|
$jkp = $_POST;
|
|
|
|
// In Trial we do not allow more.
|
|
if ($jakosub['trial']) {
|
|
$_SESSION["infomsg"] = $jkl['i11'];
|
|
jak_redirect(BASE_URL);
|
|
}
|
|
|
|
// End of Trial let's check if we have reached the limit
|
|
if (!$jakosub['trial'] && $jakdb->count($jaktable, ["opid" => $opcacheid]) >= $jakosub['chatwidgets']) {
|
|
$_SESSION["infomsg"] = $jkl['i15'];
|
|
jak_redirect(BASE_URL);
|
|
}
|
|
|
|
if (empty($jkp['title'])) {
|
|
$errors['e'] = $jkl['e2'];
|
|
}
|
|
|
|
if (count($errors) == 0) {
|
|
|
|
// Chat departments
|
|
if ((!isset($jkp['jak_depid']) || $jkp['jak_depid'] == 0) || (is_array($jkp['jak_depid']) && in_array("0", $jkp['jak_depid']))) {
|
|
$depa = 0;
|
|
} else {
|
|
$depa = join(',', $jkp['jak_depid']);
|
|
}
|
|
|
|
$jakdb->insert($jaktable, ["opid" => $opcacheid,
|
|
"title" => $jkp['title'],
|
|
"depid" => $jkp['jak_depid'],
|
|
"singleopid" => $jkp['jak_opid'],
|
|
"lang" => $jkp['jak_lang'],
|
|
"template" => "business",
|
|
"updated" => $jakdb->raw("NOW()"),
|
|
"created" => $jakdb->raw("NOW()")]);
|
|
|
|
$lastid = $jakdb->id();
|
|
|
|
if (!$lastid) {
|
|
$_SESSION["infomsg"] = $jkl['i'];
|
|
jak_redirect($_SESSION['LCRedirect']);
|
|
} else {
|
|
|
|
// Now let us delete the define cache file
|
|
$cachedefinefile = APP_PATH.JAK_CACHE_DIRECTORY.'/opcache'.$opcacheid.'.php';
|
|
if (file_exists($cachedefinefile)) {
|
|
unlink($cachedefinefile);
|
|
}
|
|
|
|
// Write the log file each time someone login after to show success
|
|
JAK_base::jakWhatslog('', $opcacheid, JAK_USERID, 0, 17, $lastid, (isset($_COOKIE['WIOgeoData']) ? $_COOKIE['WIOgeoData'] : ''), $jakuser->getVar("username"), $_SERVER['REQUEST_URI'], $ipa, $valid_agent);
|
|
|
|
$_SESSION["successmsg"] = $jkl['g14'];
|
|
jak_redirect($_SESSION['LCRedirect']);
|
|
}
|
|
|
|
// Output the errors
|
|
} else {
|
|
|
|
$errors = $errors;
|
|
}
|
|
|
|
}
|
|
|
|
// Get all departments
|
|
$JAK_DEPARTMENTS = $jakdb->select($jaktable1, ["id", "title"], ["opid" => $opcacheid, "ORDER" => ["dorder" => "ASC"]]);
|
|
|
|
// Get all operators
|
|
$JAK_OPERATORS = $jakdb->select($jaktable2, ["id", "username"], ["opid" => $opcacheid, "ORDER" => ["username" => "ASC"]]);
|
|
|
|
// Call the settings function
|
|
$lang_files = jak_get_lang_files();
|
|
|
|
// Get all responses
|
|
$CHATWIDGET_ALL = jak_get_page_info($jaktable, $opcacheid);
|
|
// Get the the total
|
|
$totalAll = count($CHATWIDGET_ALL);
|
|
|
|
// Title and Description
|
|
$SECTION_TITLE = $jkl["m26"];
|
|
$SECTION_DESC = "";
|
|
|
|
// Include the javascript file for results
|
|
$js_file_footer = 'js_widget.php';
|
|
|
|
// Call the template
|
|
$template = 'widget.php';
|
|
}
|
|
?>
|
|
|