1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<?php /** * about.php * * This file displays the About window. * You may not alter, disable or remove the About dialog information nor * the corresponding $CONF variables. * * @package TeamCalPro * @version 3.3.001 * @author George Lewe * @copyright Copyright (c) 2004-2010 by George Lewe * @link http://www.lewe.com * @license http://www.lewe.com/tcpro/doc/license.txt Extended GNU Public License */ /** * Set parent flag to control access to child scripts */ define( '_VALID_TCPRO', 1 );
/** * Include configuration */ require ("config.tcpro.php"); require_once ("includes/functions.tcpro.php"); getOptions(); if (strlen($CONF['options']['lang'])) require ("includes/lang/" . $CONF['options']['lang'] . ".tcpro.php"); else require ("includes/lang/english.tcpro.php");
require_once("includes/tcconfig.class.php" ); $C = new tcConfig;
/** * Get current theme */ $theme = $C->readConfig("theme"); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Lewe Team Calendar Pro</title> <meta http-equiv="Content-type" content="text/html;charset=iso-8859-1"> <meta http-equiv="Content-Style-Type" content="text/css"> <link rel="shortcut icon" href="themes/<?=$theme?>/img/favicon.ico" /> <script type="text/javascript" src="includes/js/tcpro.js"> </script> <link rel="stylesheet" type="text/css" href="themes/<?=$theme?>/css/tcpro.css"> </head> <body> <table class="about"> <tr> <td class="about-top"><img src="img/blank.png" width="10" height="210" alt=""></td> </tr> <tr> <td class="about-bottom"> <strong>Version:</strong> <?=$CONF['app_version']?><br /> <strong>Copyright:</strong> ©2004-<?=$CONF['app_year']?> by <a class="about" href="http://www.lewe.com/" target="_blank"><?=$CONF['app_author']?></a><br /> <strong>License:</strong> GNU General Public License (GPL)<br /> <br /> <strong>Credits:</strong><br /> • Erik Bosrup for <a class="about" href="http://www.bosrup.com/web/overlib/" target="_blank">OverLIB</a><br /> • Softcomplex Inc. for <a class="about" href="http://www.softcomplex.com/products/tigra_color_picker/" target="_blank">Tigra Color Picker</a><br /> • Heng Yuan for <a class="about" href="http://www.cs.ucla.edu/~heng/JSCookMenu/" target="_blank">JSCookMenu</a><br /> • Mihai Bazon for <a class="about" href="http://www.dynarch.com/projects/calendar/" target="_blank">JSCalendar</a><br /> • David Vignoni for <a class="about" href="http://www.icon-king.com" target="_blank">Nuvola Icons</a><br /> • many users for testing and suggesting...<br /> </td> </tr> <tr> <td class="dlg-menu"> <input name="btn_close" type="button" class="button" onclick="javascript:window.close();" value="<?=$LANG['btn_close']?>" onmouseover="this.className='button-over';" onmouseout="this.className='button';"> </td> </tr> </table> </body> </html>
|