]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - html/html/themes/ipfire/include/functions.pl
GUI: Remove the blend effects option.
[people/teissler/ipfire-2.x.git] / html / html / themes / ipfire / include / functions.pl
CommitLineData
af731c7d
AM
1#!/usr/bin/perl
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21# #
22# Theme file for IPfire (based on ipfire theme) #
23# Author kay-michael köhler kmk <michael@koehler.tk> #
24# #
25# Version 1.0 March, 6th 2013 #
26###############################################################################
27# #
28# Modyfied theme by a.marx@ipfire.org January 2014 #
29# #
30# Cleanup code, deleted unused code and rewrote the rest to get a new working #
31# IPFire default theme. #
32###############################################################################
33
af731c7d
AM
34require "${General::swroot}/lang.pl";
35###############################################################################
36#
37# print menu html elements for submenu entries
38# @param submenu entries
39sub showsubmenu() {
40 my $submenus = shift;
41
42 print "<ul>";
43 foreach my $item (sort keys %$submenus) {
44 $link = getlink($submenus->{$item});
45 next if (!is_menu_visible($link) or $link eq '');
46
47 my $subsubmenus = $submenus->{$item}->{'subMenu'};
48
49 if ($subsubmenus) {
50 print '<li class="has-sub ">';
51 } else {
52 print '<li>';
53 }
697a4d52 54 print '<a href="'.$link.'">'.$submenus->{$item}->{'caption'}.'</a>';
af731c7d
AM
55
56 &showsubmenu($subsubmenus) if ($subsubmenus);
57 print '</li>';
58 }
59 print "</ul>"
60}
61
62###############################################################################
63#
64# print menu html elements
65sub showmenu() {
697a4d52 66 print '<div id="cssmenu" class="bigbox fixed">';
865c7615 67
af731c7d 68 if ($settings{'SPEED'} ne 'off') {
865c7615
MT
69 print <<EOF;
70 <div id='traffic'>
71 <strong>Traffic:</strong>
72 In <span id='rx_kbs'>--.-- Bit/s</span> &nbsp;
73 Out <span id='tx_kbs'>--.-- Bit/s</span>
74 </div>
75EOF
af731c7d 76 }
865c7615 77
697a4d52
MT
78 print "<ul>";
79 foreach my $k1 ( sort keys %$menu ) {
80 $link = getlink($menu->{$k1});
81 next if (!is_menu_visible($link) or $link eq '');
82 print '<li class="has-sub "><a><span>'.$menu->{$k1}->{'caption'}.'</span></a>';
83 my $submenus = $menu->{$k1}->{'subMenu'};
84 &showsubmenu($submenus) if ($submenus);
85 print "</li>";
86 }
87
88 print "</ul></div>";
af731c7d
AM
89}
90
91###############################################################################
92#
93# print page opening html layout
94# @param page title
95# @param boh
96# @param extra html code for html head section
97# @param suppress menu option, can be numeric 1 or nothing.
98# menu will be suppressed if param is 1
99sub openpage {
100 my $title = shift;
101 my $boh = shift;
102 my $extrahead = shift;
103 my $suppressMenu = shift;
104 my @tmp = split(/\./, basename($0));
105 my $scriptName = @tmp[0];
af731c7d
AM
106
107 @URI=split ('\?', $ENV{'REQUEST_URI'} );
108 &General::readhash("${swroot}/main/settings", \%settings);
109 &genmenu();
110
697a4d52 111 my $headline = "IPFire";
af731c7d 112 if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
697a4d52 113 $headline = "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}";
af731c7d
AM
114 }
115
116print <<END
117<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
118<html>
119 <head>
697a4d52 120 <title>$headline - $title</title>
af731c7d
AM
121 $extrahead
122 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
123 <link rel="shortcut icon" href="/favicon.ico" />
f14e224b 124 <link href="/themes/ipfire/include/css/style.css" rel="stylesheet" type="text/css" />
af731c7d
AM
125 <script type="text/javascript" src="/include/jquery-1.9.1.min.js"></script>
126END
127;
128if ($settings{'SPEED'} ne 'off') {
129print <<END
f14e224b 130 <script type="text/javascript" src="/themes/ipfire/include/js/refreshInetInfo.js"></script>
af731c7d
AM
131END
132;
133}
134
af731c7d 135print <<END
697a4d52
MT
136 </head>
137 <body>
138 <div id="header" class="fixed">
af731c7d
AM
139 <div id="logo">
140END
141;
142 if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
697a4d52 143 print "<h1>$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}</h1>";
af731c7d 144 } else {
697a4d52 145 print "<h1>IPFire</h1>";
af731c7d
AM
146 }
147
148print <<END
af731c7d
AM
149 </div>
150 </div>
151END
152;
153
154&showmenu() if ($suppressMenu != 1);
155
156print <<END
697a4d52
MT
157 <div class="bigbox fixed">
158 <div id="main_inner" class="fixed">
159 <h1>$title</h1>
af731c7d
AM
160END
161;
162}
163
164###############################################################################
165#
166# print page opening html layout without menu
167# @param page title
168# @param boh
169# @param extra html code for html head section
170sub openpagewithoutmenu {
171 openpage(shift,shift,shift,1);
172 return;
173}
174
af731c7d
AM
175###############################################################################
176#
177# print page closing html layout
178
179sub closepage () {
c3f00878
MT
180 open(FILE, "</etc/system-release");
181 my $system_release = <FILE>;
182 $system_release =~ s/core/Core Update/;
183 close(FILE);
af731c7d 184
697a4d52 185print <<END;
af731c7d
AM
186 </div>
187 </div>
697a4d52
MT
188
189 <div id="footer" class='bigbox fixed'>
c3f00878
MT
190 <span class="pull-right">
191 <a href="http://www.ipfire.org/" target="_blank"><strong>IPFire.org</strong></a> &bull;
192 <a href="http://www.ipfire.org/donate" target="_blank">$Lang::tr{'support donation'}</a>
193 </span>
194
195 <strong>$system_release</strong>
697a4d52 196 </div>
af731c7d
AM
197</body>
198</html>
af731c7d
AM
199END
200;
201}
202
203###############################################################################
204#
205# print big box opening html layout
697a4d52 206sub openbigbox {
af731c7d
AM
207}
208
209###############################################################################
210#
211# print big box closing html layout
697a4d52 212sub closebigbox {
af731c7d
AM
213}
214
215###############################################################################
216#
217# print box opening html layout
218# @param page width
219# @param page align
220# @param page caption
697a4d52 221sub openbox {
af731c7d
AM
222 $width = $_[0];
223 $align = $_[1];
224 $caption = $_[2];
225
697a4d52
MT
226 print "<div class='post' align='$align'>\n";
227
228 if ($caption) {
229 print "<h2>$caption</h2>\n";
230 }
af731c7d
AM
231}
232
233###############################################################################
234#
235# print box closing html layout
697a4d52
MT
236sub closebox {
237 print "</div>";
af731c7d
AM
238}
239
2401;