1320f9975a49eeba01ff6b4b94f466f1a4a0d59f
3 ** options_personal.php
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
8 ** Displays all options relating to personal information
14 if (!isset($config_php))
15 include("../config/config.php");
16 if (!isset($strings_php))
17 include("../functions/strings.php");
18 if (!isset($page_header_php))
19 include("../functions/page_header.php");
20 if (!isset($display_messages_php))
21 include("../functions/display_messages.php");
22 if (!isset($imap_php))
23 include("../functions/imap.php");
24 if (!isset($array_php))
25 include("../functions/array.php");
26 if (!isset($i18n_php))
27 include("../functions/i18n.php");
28 if (!isset($plugin_php))
29 include("../functions/plugin.php");
31 include("../src/load_prefs.php");
32 displayPageHeader($color, "None");
34 $fullname = getPref($data_dir, $username, "full_name");
35 $replyto = getPref($data_dir, $username, "reply_to");
36 $email_address = getPref($data_dir, $username, "email_address");
40 <table width
=95% align
=center border
=0 cellpadding
=2 cellspacing
=0><tr
><td bgcolor
="<?php echo $color[0] ?>">
41 <center
><b
><?php
echo _("Options") . " - " . _("Personal Information"); ?
></b
></center
>
44 <form name
=f action
="options.php" method
=post
>
45 <table width
=100% cellpadding
=0 cellspacing
=2 border
=0>
47 <td align
=right nowrap
><?php
echo _("Full Name"); ?
>:
49 <input size
=50 type
=text value
="<?php echo $fullname ?>" name
=full_name
>
53 <td align
=right nowrap
><?php
echo _("E-Mail Address"); ?
>:
55 <input size
=50 type
=text value
="<?php echo $email_address ?>" name
=email_address
>
59 <td align
=right nowrap
><?php
echo _("Reply To"); ?
>:
61 <input size
=50 type
=text value
="<?php echo $replyto ?>" name
=reply_to
>
65 <td align
=right nowrap valign
=top
><br
><?php
echo _("Signature"); ?
>:
68 if ($use_signature == true)
69 echo "<input type=checkbox value=\"0\" name=usesignature checked> " . _("Use a signature") . "?<BR>";
71 echo "<input type=checkbox value=\"1\" name=usesignature> ";
72 echo _("Use a signature?");
75 echo "\n<textarea name=signature_edit rows=5 cols=50>$signature_abs</textarea><br>";
79 <?php
do_hook("options_personal_inside"); ?
>
83 <input type
="submit" value
="Submit" name
="submit_personal">
88 <?php
do_hook("options_personal_bottom"); ?
>