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
|
<?php if (!defined('_VALID_TCPRO')) exit ('No direct access allowed!'); /** * other.inc.php * * Displays the 'Other' tab in the user profile dialog * * @package TeamCalPro * @version 3.3.001 * @author George Lewe <george@lewe.com> * @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 */
/** * Includes */ unset($CONF); require ("config.tcpro.php"); require_once( $CONF['app_root']."includes/functions.tcpro.php" ); getOptions(); include( $CONF['app_root']."includes/lang/".$CONF['options']['lang'].".tcpro.php"); ?> <?php printDialogFrameTop($LANG['other_title'],"0"); ?> <table class="dlg-frame"> <tr> <td class="dlg-body"><strong><?=$C->readConfig("userCustom1")?></strong></td> <td class="dlg-body"> <input name="custom1" id="custom1" size="50" maxlength="80" type="text" class="text" value="<?=$U->custom1?>"> </td> </tr> <tr> <td class="dlg-body"><strong><?=$C->readConfig("userCustom2")?></strong></td> <td class="dlg-body"> <input name="custom2" id="custom2" size="50" maxlength="80" type="text" class="text" value="<?=$U->custom2?>"> </td> </tr> <tr> <td class="dlg-body"><strong><?=$C->readConfig("userCustom3")?></strong></td> <td class="dlg-body"> <input name="custom3" id="custom3" size="50" maxlength="80" type="text" class="text" value="<?=$U->custom3?>"> </td> </tr> <tr> <td class="dlg-body"><strong><?=$C->readConfig("userCustom4")?></strong></td> <td class="dlg-body"> <input name="custom4" id="custom4" size="50" maxlength="80" type="text" class="text" value="<?=$U->custom4?>"> </td> </tr> <tr> <td class="dlg-body"><strong><?=$C->readConfig("userCustom5")?></strong></td> <td class="dlg-body"> <input name="custom5" id="custom5" size="50" maxlength="80" type="text" class="text" value="<?=$U->custom5?>"> </td> </tr> <tr> <td class="dlg-body"><strong><?=$LANG['other_customFree']?></strong></td> <td class="dlg-body"> <textarea name="customFree" id="customFree" class="text" cols="47" rows="6"><?php if (strlen(trim($U->customFree))) echo stripslashes(str_replace("<br>","\r\n",trim($U->customFree))); else echo "";?></textarea> </td> </tr> <tr> <td class="dlg-body"><strong><?=$LANG['other_customPopup']?></strong></td> <td class="dlg-body"> <textarea name="customPopup" id="customPopup" class="text" cols="47" rows="6"><?php if (strlen(trim($U->customPopup))) echo stripslashes(str_replace("<br>","\r\n",trim($U->customPopup))); else echo "";?></textarea> </td> </tr> </table> <?php printDialogFrameBottom(); ?>
|