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