]> git.datanom.net - webcal.git/blob - include/footer.inc.php
Initial upload
[webcal.git] / include / footer.inc.php
1 <?php
2 /* $Id$ */
3 require_once 'config.inc.php';
4 require_once 'persistens.php';
5 require_once 'helper.php';
6
7 $con = Persistens::getInstance(DBDRIVER);
8 if (! is_array($res = $con->getVersion())) {
9 ErrorReport($res);
10 }
11 $title = TITLE;
12 $foot = <<<_FOOTER
13 <div id="footer">
14 <p>
15 $title {$res[0]} - &copy; 2010, 2011 Michael Rasmussen<br/>Released under GPLv3
16 <a href="http://validator.w3.org/check?uri=referer">
17 <img src="http://www.w3.org/Icons/valid-xhtml10-blue.png"
18 alt="Valid XHTML 1.0 Strict" height="31" width="88" />
19 </a>
20 <a href="http://jigsaw.w3.org/css-validator/check/referer">
21 <img src="http://www.w3.org/Icons/valid-css2-blue.png"
22 alt="Valid CSS 2.0" height="31" width="88" />
23 </a>
24 </p>
25 </div>
26 </body>
27 </html>
28 _FOOTER;
29
30 //file_put_contents('/tmp/davical.log', $foot, FILE_APPEND);
31 print $foot;
This page took 0.059422 seconds and 6 git commands to generate.