fusionpbx/resources/footer.php

314 lines
15 KiB
PHP
Raw Permalink Normal View History

<?php
/*
FusionPBX
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
The Original Code is FusionPBX
The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2008-2024
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
2016-12-13 16:47:22 +01:00
2022-10-11 00:35:14 +02:00
//includes files
require_once __DIR__ . "/require.php";
2016-12-13 16:47:22 +01:00
//database and settings
$domain_uuid = $_SESSION['domain_uuid'] ?? '';
$user_uuid = $_SESSION['user_uuid'] ?? '';
$database = database::new();
$settings = new settings(['database' => $database, 'domain_uuid' => $domain_uuid, 'user_uuid' => $user_uuid]);
2016-12-13 16:47:22 +01:00
//set variables if not set
2019-11-24 00:36:51 +01:00
//if (!isset($_SESSION["template_content"])) { $_SESSION["template_content"] = null; }
2016-12-13 16:47:22 +01:00
if (!isset($document)) { $document = null; }
if (!isset($v_menu)) { $v_menu = null; }
if (!isset($_SESSION["menu"])) { $_SESSION["menu"] = null; }
if (!isset($_SESSION["username"])) { $_SESSION["username"] = null; }
2025-03-29 20:39:24 +01:00
//save the session domains array to a variable of type array
$domains = $_SESSION['domains'] ?? [];
//count the number of domains
$domain_count = count($domains);
//get the output from the buffer
2023-05-16 20:39:29 +02:00
$body = ($content_from_db ?? '').ob_get_contents();
ob_end_clean(); //clean the buffer
//clear the template
//if (!filter_var($_SESSION['theme']['cache']['boolean'] ?? false, FILTER_VALIDATE_BOOL)) {
2019-11-24 00:36:51 +01:00
// $_SESSION["template_content"] = '';
//}
//set a default template
if (empty($_SESSION["template_full_path"])) { //build template if session template has no length
2016-03-25 23:30:35 +01:00
$template_base_path = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH.'/themes';
if (!empty($template_rss_sub_category)) {
//this template was assigned by the content manager
//get the contents of the template and save it to the template variable
2016-03-25 23:30:35 +01:00
$template_full_path = $template_base_path.'/'.$template_rss_sub_category.'/template.php';
if (!file_exists($template_full_path)) {
$_SESSION['domain']['template']['name'] = 'default';
2016-03-25 23:30:35 +01:00
$template_full_path = $template_base_path.'/default/template.php';
}
2019-11-23 23:26:34 +01:00
$_SESSION["template_full_path"] = $template_full_path;
}
else {
//get the contents of the template and save it to the template variable
2016-03-25 23:30:35 +01:00
$template_full_path = $template_base_path.'/'.$_SESSION['domain']['template']['name'].'/template.php';
if (!file_exists($template_full_path)) {
$_SESSION['domain']['template']['name'] = 'default';
2016-03-25 23:30:35 +01:00
$template_full_path = $template_base_path.'/default/template.php';
}
2019-11-23 23:26:34 +01:00
$_SESSION["template_full_path"] = $template_full_path;
}
}
2020-03-18 03:31:29 +01:00
//initialize a template object
$view = new template();
$view->engine = 'smarty';
$view->template_dir = $_SERVER['DOCUMENT_ROOT'].PROJECT_PATH.'/themes/'.$_SESSION['domain']['template']['name'].'/';
$view->cache_dir = sys_get_temp_dir();
2020-03-18 03:31:29 +01:00
$view->init();
//add multi-lingual support
$language = new text;
$text_default = $language->get();
$text_application = $language->get(null,'themes/'.$_SESSION['domain']['template']['name']);
2020-03-18 03:31:29 +01:00
$text = array_merge($text_default, $text_application);
//create token
$object = new token;
$domain_json_token = $object->create('/core/domains/domain_json.php');
2023-05-10 01:06:19 +02:00
//set the variable
$logo = '';
2020-03-18 03:31:29 +01:00
//set template variables
2020-03-18 03:31:29 +01:00
//add translations
foreach($text as $key => $value) {
$array[str_replace('-', '_', $key)] = $value;
}
2020-03-18 03:31:29 +01:00
$view->assign('text', $array);
//project path
$view->assign('project_path', PROJECT_PATH);
//domain menu
$view->assign('domain_menu', escape($_SESSION['domain']['menu']['uuid']));
//domain json token
$view->assign('domain_json_token_name', $domain_json_token['name']);
$view->assign('domain_json_token_hash', $domain_json_token['hash']);
2020-03-18 03:31:29 +01:00
//theme settings
if (is_array($_SESSION['theme']) && @sizeof($_SESSION['theme']) != 0) {
//load into array
foreach ($_SESSION['theme'] as $subcategory => $setting) {
2020-03-18 20:14:50 +01:00
switch($subcategory) {
//exceptions
case 'favicon':
case 'custom_css':
2020-03-18 20:14:50 +01:00
if ($setting['text'] != '') {
$tmp_url = parse_url($setting['text']);
$tmp_path = pathinfo($setting['text']);
if (
is_array($tmp_url) && @sizeof($tmp_url) != 0 &&
is_array($tmp_path) && @sizeof($tmp_path) != 0 &&
(
(!empty($tmp_url['scheme']) && $tmp_url['scheme'].'://'.$tmp_url['host'].$tmp_url['path'] == $tmp_path['dirname'].'/'.$tmp_path['filename'].'.'.$tmp_path['extension']) //is url
2020-03-18 20:14:50 +01:00
|| $tmp_url['path'] == $tmp_path['dirname'].'/'.$tmp_path['filename'].'.'.$tmp_path['extension'] //is path
)) {
$settings_array['theme'][$subcategory] = $setting['text'];
2020-03-18 20:14:50 +01:00
}
unset($tmp_url, $tmp_path);
}
break;
//otherwise
default:
if (isset($setting['text']) && $setting['text'] != '') {
$settings_array['theme'][$subcategory] = str_replace('&lowbar;','_',escape($setting['text']));
2020-03-18 20:14:50 +01:00
}
2020-05-25 21:17:01 +02:00
else if (isset($setting['numeric']) && is_numeric($setting['numeric'])) {
$settings_array['theme'][$subcategory] = $setting['numeric'];
2020-05-25 21:17:01 +02:00
}
2020-03-18 20:14:50 +01:00
else if (isset($setting['boolean'])) {
$settings_array['theme'][$subcategory] = $setting['boolean'] == 'true' ? true : false;
2020-03-18 20:14:50 +01:00
}
else {
$settings_array['theme'][$subcategory] = escape($setting);
2020-03-18 20:14:50 +01:00
}
2020-03-18 03:31:29 +01:00
}
}
2023-04-25 09:25:59 +02:00
2020-03-18 03:31:29 +01:00
//pre-process some settings
$settings_array['theme']['favicon'] = !empty($settings_array['theme']['favicon']) ? $settings_array['theme']['favicon'] : PROJECT_PATH.'/themes/default/favicon.ico';
$settings_array['theme']['font_loader_version'] = !empty($settings_array['theme']['font_loader_version']) ? urlencode($settings_array['theme']['font_loader_version']) : '1';
$settings_array['theme']['message_delay'] = isset($settings_array['theme']['message_delay']) ? 1000 * (float) $settings_array['theme']['message_delay'] : 3000;
$settings_array['theme']['menu_side_width_contracted'] = isset($settings_array['theme']['menu_side_width_contracted']) ? $settings_array['theme']['menu_side_width_contracted'] : '60';
$settings_array['theme']['menu_side_width_expanded'] = isset($settings_array['theme']['menu_side_width_expanded']) ? $settings_array['theme']['menu_side_width_expanded'] : '225';
$settings_array['theme']['menu_side_toggle_hover_delay_expand'] = isset($settings_array['theme']['menu_side_toggle_hover_delay_expand']) ? $settings_array['theme']['menu_side_toggle_hover_delay_expand'] : '300';
$settings_array['theme']['menu_side_toggle_hover_delay_contract'] = isset($settings_array['theme']['menu_side_toggle_hover_delay_contract']) ? $settings_array['theme']['menu_side_toggle_hover_delay_contract'] : '1000';
$settings_array['theme']['menu_style'] = !empty($settings_array['theme']['menu_style']) ? $settings_array['theme']['menu_style'] : 'fixed';
$settings_array['theme']['menu_position'] = isset($settings_array['theme']['menu_position']) ? $settings_array['theme']['menu_position'] : 'top';
$settings_array['theme']['footer'] = isset($settings_array['theme']['footer']) ? $settings_array['theme']['footer'] : '&copy; '.$text['theme-label-copyright'].' 2008 - '.date('Y')." <a href='http://www.fusionpbx.com' class='footer' target='_blank'>fusionpbx.com</a> ".$text['theme-label-all_rights_reserved'];
$settings_array['theme']['menu_side_item_main_sub_icon_contract'] = !empty($settings_array['theme']['menu_side_item_main_sub_icon_contract']) ? explode(' ', $settings_array['theme']['menu_side_item_main_sub_icon_contract'])[1] : null;
$settings_array['theme']['menu_side_item_main_sub_icon_expand'] = !empty($settings_array['theme']['menu_side_item_main_sub_icon_expand']) ? explode(' ', $settings_array['theme']['menu_side_item_main_sub_icon_expand'])[1] : null;
$settings_array['theme']['menu_brand_type'] = $settings->get('theme', 'menu_brand_type', '');
2023-04-25 09:25:59 +02:00
//assign the setings
$view->assign('settings', $settings_array);
}
//background video
if (!empty($_SESSION['theme']['background_video']) && is_array($_SESSION['theme']['background_video'])) {
$view->assign('background_video', $_SESSION['theme']['background_video'][0]);
}
2020-03-18 03:31:29 +01:00
//document title
if (isset($_SESSION['theme']['title']['text']) && $_SESSION['theme']['title']['text'] != '') {
$document_title = $_SESSION['theme']['title']['text'];
}
2023-09-20 19:19:19 +02:00
$document_title = (!empty($document['title']) ? $document['title'].' - ' : null).($document_title ?? '');
2020-03-18 03:31:29 +01:00
$view->assign('document_title', $document_title);
//domain selector control
2025-03-29 20:39:24 +01:00
$domain_selector_enabled = permission_exists('domain_select') && $domain_count > 1 ? true : false;
2020-03-18 03:31:29 +01:00
$view->assign('domain_selector_enabled', $domain_selector_enabled);
//browser name
$user_agent = http_user_agent();
$browser_version = $user_agent['version'];
$view->assign('browser_name', $user_agent['name']);
$view->assign('browser_name_short', $user_agent['name_short']);
//login state
$authenticated = isset($_SESSION['username']) && !empty($_SESSION['username']) ? true : false;
2020-03-18 03:31:29 +01:00
$view->assign('authenticated', $authenticated);
//domains application path
2023-10-25 04:05:21 +02:00
$view->assign('domains_app_path', PROJECT_PATH.(file_exists($_SERVER['DOCUMENT_ROOT'].'/app/domains/domains.php') ? '/app/domains/domains.php' : '/core/domains/domains.php'));
2020-03-18 03:31:29 +01:00
//domain count
2025-03-29 20:39:24 +01:00
$view->assign('domain_count', $domain_count);
2020-03-18 03:31:29 +01:00
//domain selector row background colors
2023-05-10 01:06:19 +02:00
$view->assign('domain_selector_background_color_1', !empty($_SESSION['theme']['domain_inactive_background_color'][0]) != '' ? $_SESSION['theme']['domain_inactive_background_color'][0] : '#eaedf2');
$view->assign('domain_selector_background_color_2', !empty($_SESSION['theme']['domain_inactive_background_color'][1]) != '' ? $_SESSION['theme']['domain_inactive_background_color'][1] : '#ffffff');
$view->assign('domain_active_background_color', !empty($_SESSION['theme']['domain_active_background_color']['text']) ? $_SESSION['theme']['domain_active_background_color']['text'] : '#eeffee');
2020-03-18 03:31:29 +01:00
//domain list
2025-03-29 20:39:24 +01:00
$view->assign('domains', $domains);
2020-03-18 03:31:29 +01:00
//domain uuid
2025-03-29 20:39:24 +01:00
$view->assign('domain_uuid', $domain_uuid);
2020-03-18 03:31:29 +01:00
//menu container
//load menu array into the session
if (!isset($_SESSION['menu']['array'])) {
$menu = new menu;
$menu->menu_uuid = $_SESSION['domain']['menu']['uuid'];
$_SESSION['menu']['array'] = $menu->menu_array();
unset($menu);
}
//build menu by style
switch ($_SESSION['theme']['menu_style']['text']) {
case 'side':
2020-05-28 05:24:07 +02:00
$view->assign('menu_side_state', (isset($_SESSION['theme']['menu_side_state']['text']) && $_SESSION['theme']['menu_side_state']['text'] != '' ? $_SESSION['theme']['menu_side_state']['text'] : 'expanded'));
if ($_SESSION['theme']['menu_side_state']['text'] != 'hidden') {
$menu_side_toggle = $_SESSION['theme']['menu_side_toggle']['text'] == 'hover' ? " onmouseenter=\"clearTimeout(menu_side_contract_timer); if ($('#menu_side_container').width() < 100) { menu_side_expand_start(); }\" onmouseleave=\"clearTimeout(menu_side_expand_timer); if ($('#menu_side_container').width() > 100 && $('#menu_side_state_current').val() != 'expanded') { menu_side_contract_start(); }\"" : null;
}
$container_open = "<div id='menu_side_container' style='width: ".(in_array($_SESSION['theme']['menu_side_state']['text'], ['expanded','hidden']) ? ($_SESSION['theme']['menu_side_width_expanded']['text'] ?? 225) : ($_SESSION['theme']['menu_side_width_contracted']['text'] ?? 60))."px; ".($_SESSION['theme']['menu_side_state']['text'] == 'hidden' ? "display: none;'" : "' class='hide-xs'").$menu_side_toggle." >\n";
2020-03-18 03:31:29 +01:00
$menu = new menu;
$menu->text = $text;
$menu_html = $menu->menu_vertical($_SESSION['menu']['array']);
unset($menu);
break;
case 'inline':
$container_open = "<div class='container-fluid' style='padding: 0;' align='".($_SESSION['theme']['logo_align']['text'] != '' ? $_SESSION['theme']['logo_align']['text'] : 'left')."'>\n";
if ($_SERVER['PHP_SELF'] != PROJECT_PATH.'/core/install/install.php') {
$logo = "<a href='".PROJECT_PATH."/'><img src='".($_SESSION['theme']['logo']['text'] ?: PROJECT_PATH.'/themes/default/images/logo.png')."' style='padding: 15px 20px; ".($_SESSION['theme']['logo_style']['text'] ?: null)."'></a>";
}
$menu = new menu;
$menu->text = $text;
$menu_html = $menu->menu_horizontal($_SESSION['menu']['array']);
unset($menu);
break;
case 'static':
$container_open = "<div class='container-fluid' style='padding: 0;' align='center'>\n";
$menu = new menu;
$menu->text = $text;
$menu_html = $menu->menu_horizontal($_SESSION['menu']['array']);
unset($menu);
break;
case 'fixed':
default:
$menu = new menu;
$menu->text = $text;
$menu_html = $menu->menu_horizontal($_SESSION['menu']['array']);
unset($menu);
$container_open = "<div class='container-fluid' style='padding: 0;' align='center'>\n";
break;
}
$view->assign('logo', $logo);
$view->assign('menu', $menu_html);
$view->assign('container_open', $container_open);
$view->assign('container_close', '</div>');
$view->assign('document_body', $body);
$view->assign('current_year', date('Y'));
//login logo
//determine logo source
if (isset($_SESSION['theme']['logo_login']['text']) && $_SESSION['theme']['logo_login']['text'] != '') {
$login_logo_source = $_SESSION['theme']['logo_login']['text'];
}
else if (isset($_SESSION['theme']['logo']['text']) && $_SESSION['theme']['logo']['text'] != '') {
$login_logo_source = $_SESSION['theme']['logo']['text'];
}
else {
$login_logo_source = PROJECT_PATH.'/themes/default/images/logo_login.png';
}
//determine logo dimensions
if (isset($_SESSION['theme']['login_logo_width']['text']) && $_SESSION['theme']['login_logo_width']['text'] != '') {
$login_logo_width = $_SESSION['theme']['login_logo_width']['text'];
}
else {
$login_logo_width = 'auto; max-width: 300px';
}
if (isset($_SESSION['theme']['login_logo_height']['text']) && $_SESSION['theme']['login_logo_height']['text'] != '') {
$login_logo_height = $_SESSION['theme']['login_logo_height']['text'];
}
else {
$login_logo_height = 'auto; max-height: 300px';
}
$view->assign('login_logo_source', $login_logo_source);
$view->assign('login_logo_width', $login_logo_width);
$view->assign('login_logo_height', $login_logo_height);
2023-05-10 01:06:19 +02:00
//login page
//$view->assign('login_page', $login_page);
//messages
$view->assign('messages', message::html(true, ' '));
2020-04-18 22:09:51 +02:00
//session timer
if (
$authenticated &&
file_exists($_SERVER['DOCUMENT_ROOT'].PROJECT_PATH.'/app/session_timer/session_timer.php') &&
filter_var($_SESSION['security']['session_timer_enabled']['boolean'] ?? false, FILTER_VALIDATE_BOOL)
2020-04-18 22:09:51 +02:00
) {
include_once PROJECT_PATH.'app/session_timer/session_timer.php';
$view->assign('session_timer', $session_timer);
}
2020-03-18 03:31:29 +01:00
//render the view
$output = $view->render('template.php');
//unset background image
unset($_SESSION['background_image']);
//send the output to the browser
echo $output;
unset($output);
//$statsauth = "a3az349x2bf3fdfa8dbt7x34fas5X";
//require_once "stats/stat_sadd.php";
?>