forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
link.php
93 lines (81 loc) · 3.4 KB
/
link.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2017 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDTool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
include_once("./include/global.php");
$page = db_fetch_row_prepared('SELECT
id, title, style, contentfile, enabled
FROM external_links AS el
WHERE id = ?', array(get_filter_request_var('id')));
if (!sizeof($page)) {
print 'FATAL: Page is not defined.';
} else {
global $link_nav;
if (is_realm_allowed($page['id']+10000)) {
unset ($refresh);
if ($page['style'] == 'TAB') {
$link_nav['link.php:']['title'] = $page['title'];
$link_nav['link.php:']['mapping'] = '';
general_header();
} else {
$link_nav['link.php:']['title'] = $page['title'];
$link_nav['link.php:']['mapping'] = 'index.php:';
top_header();
}
if (preg_match('/^((((ht|f)tp(s?))\:\/\/){1}\S+)/i', $page['contentfile'])) {
print '<iframe id="content" src="' . $page['contentfile'] . '" frameborder="0"></iframe>';
} else {
print '<div id="content">';
$file = $config['base_path'] . "/include/content/" . $page['contentfile'];
if (file_exists($file)) {
include_once($file);
} else {
print '<h1>The file \'' . $page['contentfile'] . '\' does not exist!!</h1>';
}
print '</div>';
}
} else {
print 'ERROR: Page is not authorized.';
}
?>
<script type='text/javascript'>
$(function() {
resizeWindow();
$(window).resize(function() {
resizeWindow();
});
});
function resizeWindow() {
heightPage = $(window).height();
heightPageHead = $('#cactiPageHead').outerHeight();
heightBreadCrumbBar = $('#breadCrumbBar').outerHeight();
heightPageContent = heightPage - heightPageHead - heightBreadCrumbBar;
width = $('#main').width();
$('#cactiContent').css({'height':heightPageContent+'px', 'width':'100%'});
$('#content').css({'width':'100%', 'height':(heightPageContent-3)+'px'});
$('#navigation_right').css({'margin':'0px', 'padding':'0px'});
$('#main').css({'margin-top':'0px', 'position':'relative'});
}
</script>
<?php
bottom_footer();
}