]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/html/themes/ipfire/include/functions.pl
pakfire: Translate WUI header/footer text
[people/pmueller/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
34###############################################################################
35#
36# print menu html elements for submenu entries
37# @param submenu entries
38sub showsubmenu() {
39 my $submenus = shift;
66c36198 40
af731c7d
AM
41 print "<ul>";
42 foreach my $item (sort keys %$submenus) {
43 $link = getlink($submenus->{$item});
44 next if (!is_menu_visible($link) or $link eq '');
45
46 my $subsubmenus = $submenus->{$item}->{'subMenu'};
47
48 if ($subsubmenus) {
49 print '<li class="has-sub ">';
50 } else {
51 print '<li>';
52 }
697a4d52 53 print '<a href="'.$link.'">'.$submenus->{$item}->{'caption'}.'</a>';
af731c7d
AM
54
55 &showsubmenu($subsubmenus) if ($subsubmenus);
56 print '</li>';
57 }
58 print "</ul>"
59}
60
61###############################################################################
62#
63# print menu html elements
64sub showmenu() {
697a4d52 65 print '<div id="cssmenu" class="bigbox fixed">';
865c7615 66
af731c7d 67 if ($settings{'SPEED'} ne 'off') {
865c7615
MT
68 print <<EOF;
69 <div id='traffic'>
2b25c029
RR
70 <strong>$Lang::tr{'traffic stat title'}:</strong>
71 $Lang::tr{'traffic stat in'} <span id='rx_kbs'>--.-- bit/s</span> &nbsp;
72 $Lang::tr{'traffic stat out'} <span id='tx_kbs'>--.-- bit/s</span>
865c7615
MT
73 </div>
74EOF
af731c7d 75 }
865c7615 76
697a4d52
MT
77 print "<ul>";
78 foreach my $k1 ( sort keys %$menu ) {
79 $link = getlink($menu->{$k1});
80 next if (!is_menu_visible($link) or $link eq '');
db309617 81 print '<li class="has-sub "><a href="#"><span>'.$menu->{$k1}->{'caption'}.'</span></a>';
697a4d52
MT
82 my $submenus = $menu->{$k1}->{'subMenu'};
83 &showsubmenu($submenus) if ($submenus);
84 print "</li>";
85 }
86
87 print "</ul></div>";
af731c7d
AM
88}
89
90###############################################################################
91#
92# print page opening html layout
93# @param page title
94# @param boh
95# @param extra html code for html head section
96# @param suppress menu option, can be numeric 1 or nothing.
97# menu will be suppressed if param is 1
98sub openpage {
99 my $title = shift;
100 my $boh = shift;
101 my $extrahead = shift;
c13060fd 102 my $suppressMenu = shift // 0;
af731c7d 103
697a4d52 104 my $headline = "IPFire";
2b6c5f25 105 if (($settings{'WINDOWWITHHOSTNAME'} eq 'on') || ($settings{'WINDOWWITHHOSTNAME'} eq '')) {
697a4d52 106 $headline = "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}";
af731c7d
AM
107 }
108
935f311e 109print <<END;
7fbb7718 110<!DOCTYPE html>
cdf0522e 111<html lang="$language">
af731c7d 112 <head>
697a4d52 113 <title>$headline - $title</title>
af731c7d
AM
114 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
115 <link rel="shortcut icon" href="/favicon.ico" />
dd2ef3b2 116 <script type="text/javascript" src="/include/jquery.js"></script>
9064bc72 117 <script src="/include/rrdimage.js"></script>
a636a760 118
b91a0f29 119 $extrahead
0f431650 120 <script type="text/javascript">
a636a760
AH
121 function swapVisibility(id) {
122 \$('#' + id).toggle();
123 }
124 </script>
af731c7d 125END
935f311e 126
8186b372
JS
127
128print "<link href=\"/themes/ipfire/include/css/style.css\" rel=\"stylesheet\" type=\"text/css\" />\n";
129
935f311e 130
af731c7d
AM
131if ($settings{'SPEED'} ne 'off') {
132print <<END
f14e224b 133 <script type="text/javascript" src="/themes/ipfire/include/js/refreshInetInfo.js"></script>
af731c7d
AM
134END
135;
136}
137
af731c7d 138print <<END
697a4d52
MT
139 </head>
140 <body>
141 <div id="header" class="fixed">
af731c7d 142 <div id="logo">
725396af 143 <a href="https://www.ipfire.org" style="text-decoration: none;">
a2069a37 144 <img src="/themes/ipfire/images/tux2.png" style="float:left; margin-left: -3px; margin-top: -3px;"/>
af731c7d
AM
145END
146;
fe9f7588 147 if ($settings{'WINDOWWITHHOSTNAME'} ne 'off') {
a2069a37 148 print "</a><h1>$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}</h1>";
af731c7d 149 } else {
a2069a37 150 print "<h1>IPFire</h1></a>";
af731c7d
AM
151 }
152
153print <<END
af731c7d
AM
154 </div>
155 </div>
156END
157;
158
c13060fd
LAH
159unless($suppressMenu) {
160 &genmenu();
161 &showmenu();
162}
af731c7d
AM
163
164print <<END
697a4d52
MT
165 <div class="bigbox fixed">
166 <div id="main_inner" class="fixed">
b0323d19
LAH
167 <div id="main_header">
168 <h1>$title</h1>
169END
170;
171
172# Print user manual link
64db1faf 173my $manual_url = &Header::get_manualpage_url();
b0323d19
LAH
174if($manual_url) {
175 print <<END
176 <span><a href="$manual_url" title="$Lang::tr{'online help en'}" target="_blank"><img src="/images/help-browser.png" alt="$Lang::tr{'online help en'}"></a></span>
177END
178;
179}
180
181print <<END
182 </div>
af731c7d
AM
183END
184;
185}
186
187###############################################################################
188#
189# print page opening html layout without menu
190# @param page title
191# @param boh
192# @param extra html code for html head section
193sub openpagewithoutmenu {
194 openpage(shift,shift,shift,1);
195 return;
196}
197
af731c7d
AM
198###############################################################################
199#
200# print page closing html layout
201
202sub closepage () {
c3f00878
MT
203 open(FILE, "</etc/system-release");
204 my $system_release = <FILE>;
2b25c029 205 $system_release =~ s/core/$Lang::tr{'core update'} /;
c3f00878 206 close(FILE);
af731c7d 207
697a4d52 208print <<END;
af731c7d
AM
209 </div>
210 </div>
697a4d52
MT
211
212 <div id="footer" class='bigbox fixed'>
c3f00878 213 <span class="pull-right">
725396af
PM
214 <a href="https://www.ipfire.org/" target="_blank"><strong>IPFire.org</strong></a> &bull;
215 <a href="https://www.ipfire.org/donate" target="_blank">$Lang::tr{'support donation'}</a>
c3f00878
MT
216 </span>
217
218 <strong>$system_release</strong>
697a4d52 219 </div>
af731c7d
AM
220</body>
221</html>
af731c7d
AM
222END
223;
224}
225
226###############################################################################
227#
228# print big box opening html layout
697a4d52 229sub openbigbox {
af731c7d
AM
230}
231
232###############################################################################
233#
234# print big box closing html layout
697a4d52 235sub closebigbox {
af731c7d
AM
236}
237
238###############################################################################
239#
240# print box opening html layout
241# @param page width
242# @param page align
243# @param page caption
697a4d52 244sub openbox {
af731c7d
AM
245 $width = $_[0];
246 $align = $_[1];
247 $caption = $_[2];
248
480f354d
AH
249 if($align eq 'center') {
250 print "<div class='post' align='center'>\n"
251 }
252 else {
253 print "<div class='post'>\n";
254 }
697a4d52
MT
255
256 if ($caption) {
257 print "<h2>$caption</h2>\n";
258 }
af731c7d
AM
259}
260
261###############################################################################
262#
263# print box closing html layout
697a4d52
MT
264sub closebox {
265 print "</div>";
af731c7d 266}