mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Move header.php and footer.php files to the resources directory.
This commit is contained in:
131
resources/header.php
Normal file
131
resources/header.php
Normal file
@@ -0,0 +1,131 @@
|
||||
<?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-2012
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Mark J Crane <markjcrane@fusionpbx.com>
|
||||
*/
|
||||
include "root.php";
|
||||
require_once "resources/require.php";
|
||||
|
||||
//if reloadxml then run the command
|
||||
if (isset($_SESSION["reload_xml"])) {
|
||||
if (strlen($_SESSION["reload_xml"]) > 0) {
|
||||
if ($_SESSION['apply_settings'] == "true") {
|
||||
//show the apply settings prompt
|
||||
}
|
||||
else {
|
||||
//create the event socket connection
|
||||
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
|
||||
//reload the access control list this also runs reloadxml
|
||||
$response = event_socket_request($fp, 'api reloadxml');
|
||||
$_SESSION["reload_xml"] = '';
|
||||
unset($_SESSION["reload_xml"]);
|
||||
usleep(500);
|
||||
//clear the apply settings reminder
|
||||
$_SESSION["reload_xml"] = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//set a default template
|
||||
if (!isset($_SESSION['domain']['template']['name'])) { $_SESSION['domain']['template']['name'] = 'default'; }
|
||||
|
||||
//set a default template
|
||||
$v_template_path = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH.'/themes';
|
||||
if (!isset($_SESSION['domain']['template']['name'])) {
|
||||
//get the contents of the template and save it to the template variable
|
||||
$template_full_path = $v_template_path.'/'.$_SESSION['domain']['template']['name'].'/template.php';
|
||||
if (!file_exists($template_full_path)) {
|
||||
$_SESSION['domain']['template']['name'] = 'default';
|
||||
}
|
||||
}
|
||||
|
||||
//start the output buffer
|
||||
include $v_template_path.'/'.$_SESSION['domain']['template']['name'].'/config.php';
|
||||
|
||||
//start the output buffer
|
||||
ob_start();
|
||||
|
||||
// get the content
|
||||
if (isset($_GET["c"])) {
|
||||
$content = $_GET["c"]; //link
|
||||
}
|
||||
else {
|
||||
$content = '';
|
||||
}
|
||||
|
||||
//get the parent id
|
||||
$sql = "select * from v_menu_items ";
|
||||
$sql .= "where menu_uuid = '".$_SESSION['domain']['menu']['uuid']."' ";
|
||||
$sql .= "and menu_item_link = '".$_SERVER["SCRIPT_NAME"]."' ";
|
||||
$prep_statement = $db->prepare(check_sql($sql));
|
||||
$prep_statement->execute();
|
||||
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
||||
foreach ($result as &$row) {
|
||||
$_SESSION["menu_item_parent_uuid"] = $row["menu_item_parent_uuid"];
|
||||
break;
|
||||
}
|
||||
unset($result);
|
||||
|
||||
//get the content
|
||||
$sql = "select * from v_rss ";
|
||||
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
||||
$sql .= "and rss_category = 'content' ";
|
||||
if (strlen($content) == 0) {
|
||||
$sql .= "and rss_link = '".$_SERVER["PHP_SELF"]."' ";
|
||||
}
|
||||
else {
|
||||
$sql .= "and rss_link = '".$content."' ";
|
||||
}
|
||||
$sql .= "and (length(rss_del_date) = 0 ";
|
||||
$sql .= "or rss_del_date is null) ";
|
||||
$sql .= "order by rss_order asc ";
|
||||
$prep_statement = $db->prepare(check_sql($sql));
|
||||
$prep_statement->execute();
|
||||
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
||||
$result_count = count($result);
|
||||
|
||||
$page["title"] = '';
|
||||
foreach($result as $row) {
|
||||
$template_rss_sub_category = $row['rss_sub_category'];
|
||||
if (strlen($row['rss_group']) == 0) {
|
||||
//content is public
|
||||
$content_from_db = &$row['rss_description'];
|
||||
if (strlen($row['rss_title']) > 0) {
|
||||
$page["title"] = $row['rss_title'];
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (if_group($row[rss_group])) { //viewable only to designated group
|
||||
$content_from_db = &$row[rss_description];
|
||||
if (strlen($row['rss_title']) > 0) {
|
||||
$page["title"] = $row['rss_title'];
|
||||
}
|
||||
}
|
||||
}
|
||||
} //end foreach
|
||||
unset($sql, $result, $row_count);
|
||||
|
||||
//start the output buffer
|
||||
ob_start();
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user