]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - html/html/themes/ipfire/include/functions.pl
fifteen: Add all updated themes and CGI files to the updater.
[people/teissler/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 # print menu html elements for submenu entries
38 # @param submenu entries
39 sub 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 }
54 print '<a href="'.$link.'">'.$submenus->{$item}->{'caption'}.'</a>';
55
56 &showsubmenu($subsubmenus) if ($subsubmenus);
57 print '</li>';
58 }
59 print "</ul>"
60 }
61
62 ###############################################################################
63 #
64 # print menu html elements
65 sub showmenu() {
66 print '<div id="cssmenu" class="bigbox fixed">';
67
68 if ($settings{'SPEED'} ne 'off') {
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>
75 EOF
76 }
77
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>";
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
99 sub 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];
106
107 @URI=split ('\?', $ENV{'REQUEST_URI'} );
108 &General::readhash("${swroot}/main/settings", \%settings);
109 &genmenu();
110
111 my $headline = "IPFire";
112 if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
113 $headline = "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}";
114 }
115
116 print <<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>
120 <title>$headline - $title</title>
121 $extrahead
122 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
123 <link rel="shortcut icon" href="/favicon.ico" />
124 <link href="/themes/ipfire/include/css/style.css" rel="stylesheet" type="text/css" />
125 <script type="text/javascript" src="/include/jquery.js"></script>
126 END
127 ;
128 if ($settings{'SPEED'} ne 'off') {
129 print <<END
130 <script type="text/javascript" src="/themes/ipfire/include/js/refreshInetInfo.js"></script>
131 END
132 ;
133 }
134
135 print <<END
136 </head>
137 <body>
138 <div id="header" class="fixed">
139 <div id="logo">
140 END
141 ;
142 if ($settings{'WINDOWWITHHOSTNAME'} ne 'off') {
143 print "<h1>$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}</h1>";
144 } else {
145 print "<h1>IPFire</h1>";
146 }
147
148 print <<END
149 </div>
150 </div>
151 END
152 ;
153
154 &showmenu() if ($suppressMenu != 1);
155
156 print <<END
157 <div class="bigbox fixed">
158 <div id="main_inner" class="fixed">
159 <h1>$title</h1>
160 END
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
170 sub openpagewithoutmenu {
171 openpage(shift,shift,shift,1);
172 return;
173 }
174
175 ###############################################################################
176 #
177 # print page closing html layout
178
179 sub closepage () {
180 open(FILE, "</etc/system-release");
181 my $system_release = <FILE>;
182 $system_release =~ s/core/Core Update/;
183 close(FILE);
184
185 print <<END;
186 </div>
187 </div>
188
189 <div id="footer" class='bigbox fixed'>
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>
196 </div>
197 </body>
198 </html>
199 END
200 ;
201 }
202
203 ###############################################################################
204 #
205 # print big box opening html layout
206 sub openbigbox {
207 }
208
209 ###############################################################################
210 #
211 # print big box closing html layout
212 sub closebigbox {
213 }
214
215 ###############################################################################
216 #
217 # print box opening html layout
218 # @param page width
219 # @param page align
220 # @param page caption
221 sub openbox {
222 $width = $_[0];
223 $align = $_[1];
224 $caption = $_[2];
225
226 print "<div class='post' align='$align'>\n";
227
228 if ($caption) {
229 print "<h2>$caption</h2>\n";
230 }
231 }
232
233 ###############################################################################
234 #
235 # print box closing html layout
236 sub closebox {
237 print "</div>";
238 }
239
240 1;