In mail.php, we don't want to double encode fields so in send() create local variable...
[isso.git] / installer.css.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Blue Static ISSO Framework
5 || # Copyright ©2002-[#]year[#] Blue Static
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; version [#]gpl[#] of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 error_reporting(E_ALL & ~E_NOTICE);
23
24 $included = true;
25
26 if (!isset($GLOBALS['isso:callback']))
27 {
28 if (!method_exists($GLOBALS['isso:callback'], 'load'))
29 {
30 $included = false;
31 $path = (isset($_SERVER['SCRIPT_URL']) ? $_SERVER['SCRIPT_URL'] : $_SERVER['REQUEST_URI']);
32 $GLOBALS['isso:callback']->webpath = dirname($path) . '/';
33
34 // Gecko browsers need this to display right
35 header("Content-Type: text/css");
36 }
37 }
38
39 $css = <<<CSS
40 /*=====================================================================*\
41 || ###################################################################
42 || # Blue Static ISSO Framework
43 || # Copyright ©2002-[#]year[#] Blue Static
44 || #
45 || # This program is free software; you can redistribute it and/or modify
46 || # it under the terms of the GNU General Public License as published by
47 || # the Free Software Foundation; version [#]gpl[#] of the License.
48 || #
49 || # This program is distributed in the hope that it will be useful, but
50 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
51 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
52 || # more details.
53 || #
54 || # You should have received a copy of the GNU General Public License along
55 || # with this program; if not, write to the Free Software Foundation, Inc.,
56 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
57 || ###################################################################
58 \*=====================================================================*/
59
60 body
61 {
62 font-family: Verdana, Arial, Helvetica, sans-serif;
63 font-size: 12px;
64 }
65
66 body a
67 {
68 color: rgb(0, 0, 238);
69 }
70
71 h1
72 {
73 color: rgb(66, 137, 155);
74 }
75
76 .buttonlink
77 {
78 margin-top: 20px;
79 }
80
81 .buttonlink a
82 {
83 font-weight: bold;
84 padding: 5px;
85 border: 1px solid black;
86 text-decoration: none;
87 color: rgb(37, 37, 37);
88 background-color: rgb(239, 239, 239);
89 margin-top: 20px;
90 }
91 CSS;
92
93 if (!$included)
94 {
95 echo $css;
96 }
97
98 /*=====================================================================*\
99 || ###################################################################
100 || # $HeadURL$
101 || # $Id$
102 || ###################################################################
103 \*=====================================================================*/
104 ?>