copyright update
[squirrelmail.git] / src / options_identities.php
CommitLineData
aaf9abef 1<?php
895905c0 2
35586184 3/**
4 * options_identities.php
5 *
35586184 6 * Display Identities Options
7 *
47ccfad4 8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 10 * @version $Id$
8f6f9ba5 11 * @package squirrelmail
ca479ad1 12 * @subpackage prefs
0f01b5d7 13 * @since 1.1.3
35586184 14 */
15
30967a1e 16/**
17 * Path for SquirrelMail required files.
18 * @ignore
19 */
86725763 20define('SM_PATH','../');
21
22/* SquirrelMail required files. */
08185f2a 23require_once(SM_PATH . 'include/validate.php');
ca479ad1 24include_once(SM_PATH . 'functions/global.php');
25include_once(SM_PATH . 'functions/display_messages.php');
26include_once(SM_PATH . 'functions/html.php');
e7f9c987 27include_once(SM_PATH . 'functions/identity.php');
aaf9abef 28
e7f9c987 29if (!sqgetGlobalVar('identities', $identities, SQ_SESSION)) {
30 $identities = get_identities();
fe369c70 31}
e7f9c987 32sqgetGlobalVar('newidentities', $newidentities, SQ_POST);
33sqgetGlobalVar('smaction', $smaction, SQ_POST);
34sqgetGlobalVar('return', $return, SQ_POST);
fe369c70 35
e7f9c987 36// First lets see if there are any actions to perform //
37if (!empty($smaction) && is_array($smaction)) {
91e0dccc 38
e7f9c987 39 $doaction = '';
40 $identid = 0;
91e0dccc 41
e7f9c987 42 foreach($smaction as $action=>$row) {
43 // we only need to extract the action and the identity we are
44 // altering
91e0dccc 45
bb51bc8b 46 foreach($row as $iKey=>$data) {
47 $identid = $iKey;
e7f9c987 48 }
49
50 $doaction = $action;
32f4e318 51 }
91e0dccc 52
e7f9c987 53 $identities = sqfixidentities( $newidentities , $identid , $action );
54 save_identities($identities);
55}
e697b6cc 56
e7f9c987 57if (!empty($return)) {
58 header('Location: ' . get_location() . '/options_personal.php');
59 exit;
60}
e697b6cc 61
e7f9c987 62displayPageHeader($color, 'None');
e697b6cc 63
0f01b5d7 64/* since 1.1.3 */
e7f9c987 65do_hook('options_identities_top');
91e0dccc 66
e7f9c987 67$td_str = '';
68$td_str .= '<form name="f" action="options_identities.php" method="post"><br />' . "\n";
69$td_str .= '<table border="0" cellspacing="0" cellpadding="0" width="100%">' . "\n";
70$cnt = count($identities);
bb51bc8b 71foreach( $identities as $iKey=>$ident ) {
e697b6cc 72
bb51bc8b 73 if ($iKey == 0) {
e7f9c987 74 $hdr_str = _("Default Identity");
75 } else {
bb51bc8b 76 $hdr_str = sprintf( _("Alternate Identity %d"), $iKey);
e697b6cc 77 }
78
bb51bc8b 79 $td_str .= ShowIdentityInfo( $hdr_str, $ident, $iKey );
e697b6cc 80
e7f9c987 81}
82
83$td_str .= ShowIdentityInfo( _("Add a New Identity"), array('full_name'=>'','email_address'=>'','reply_to'=>'','signature'=>''), $cnt);
84$td_str .= '</table>' . "\n";
85$td_str .= '</form>';
86
87echo '<br /> ' . "\n" .
88 html_tag('table', "\n" .
89 html_tag('tr', "\n" .
bb51bc8b 90 html_tag('td' , "\n" .
e7f9c987 91 '<b>' . _("Options") . ' - ' . _("Advanced Identities") . '</b><br />' .
92 html_tag('table', "\n" .
93 html_tag('tr', "\n" .
94 html_tag('td', "\n" .
95 html_tag('table' , "\n" .
96 html_tag('tr' , "\n" .
97 html_tag('td', "\n" . $td_str ,'','', 'style="text-align:center;"')
98 ),
99 '', '', 'width="80%" cellpadding="2" cellspacing="0" border="0"' ) ,
100 'center', $color[4])
101 ),
102 '', '', 'width="100%" border="0" cellpadding="1" cellspacing="1"' )) ,
103 'center', $color[0]),
104 'center', '', 'width="95%" border="0" cellpadding="2" cellspacing="0"' ) . '</body></html>';
bb51bc8b 105
0f01b5d7 106/**
107 * Returns html formated identity form fields
bb51bc8b 108 *
0f01b5d7 109 * Contains options_identities_buttons and option_identities_table hooks.
bb51bc8b 110 * Before 1.4.5/1.5.1 hooks were placed in ShowTableInfo() function.
111 * In 1.1.3-1.4.1 they were called in do_hook function with two or
0f01b5d7 112 * three arguments. Since 1.4.1 hooks are called in concat_hook_function.
113 * Arguments are moved to array.
114 *
115 * options_identities_buttons hook uses array with two keys. First array key is
bb51bc8b 116 * boolean variable used to indicate empty identity field. Second array key
0f01b5d7 117 * is integer variable used to indicate identity number
118 *
119 * options_identities_table hook uses array with three keys. First array key is
bb51bc8b 120 * a string containing background color style CSS (1.4.1-1.4.4/1.5.0 uses only
121 * html color code). Second array key is boolean variable used to indicate empty
122 * identity field. Third array key is integer variable used to indicate identity
0f01b5d7 123 * number
124 * @param string $title Name displayed in header row
125 * @param array $identity Identity information
126 * @param integer $id identity ID
127 * @return string html formatted table rows with form fields for identity management
128 * @since 1.5.1 and 1.4.5 (was called ShowTableInfo() in 1.1.3-1.4.4 and 1.5.0)
129 */
e7f9c987 130function ShowIdentityInfo($title, $identity, $id ) {
131 global $color;
132
133 if (empty($identity['full_name']) && empty($identity['email_address']) && empty($identity['reply_to']) && empty($identity['signature'])) {
134 $bg = '';
135 $empty = true;
136 } else {
137 $bg = ' style="background-color:' . $color[0] . ';"';
f9632976 138 $empty = false;
e697b6cc 139 }
140
e7f9c987 141 $name = 'newidentities[%d][%s]';
142
e697b6cc 143
e7f9c987 144 $return_str = '';
145
146 $return_str .= '<tr>' . "\n";
147 $return_str .= ' <th style="text-align:center;background-color:' . $color[9] . ';" colspan="2">' . $title . '</th> '. "\n";
148 $return_str .= '</tr>' . "\n";
149 $return_str .= sti_input( _("Full Name") , sprintf($name, $id, 'full_name'), $identity['full_name'], $bg);
150 $return_str .= sti_input( _("E-Mail Address") , sprintf($name, $id, 'email_address'), $identity['email_address'], $bg);
151 $return_str .= sti_input( _("Reply To"), sprintf($name, $id, 'reply_to'), $identity['reply_to'], $bg);
152 $return_str .= sti_textarea( _("Signature"), sprintf($name, $id, 'signature'), $identity['signature'], $bg);
153 $return_str .= concat_hook_function('options_identities_table', array($bg, $empty, $id));
154 $return_str .= '<tr' . $bg . '> ' . "\n";
155 $return_str .= ' <td> &nbsp; </td>' . "\n";
156 $return_str .= ' <td>' . "\n";
157 $return_str .= ' <input type="submit" name="smaction[save][' . $id . ']" value="' . _("Save / Update") . '" />' . "\n";
158
159 if (!$empty && $id > 0) {
160 $return_str .= ' <input type="submit" name="smaction[makedefault][' . $id . ']" value="' . _("Make Default") . '" />' . "\n";
161 $return_str .= ' <input type="submit" name="smaction[delete]['.$id.']" value="' . _("Delete") . '" />' . "\n";
162
163 if ($id > 1) {
164 $return_str .= ' <input type="submit" name="smaction[move]['.$id.']" value="' . _("Move Up") . '" />' . "\n";
165 }
e697b6cc 166
e697b6cc 167 }
168
e7f9c987 169 $return_str .= concat_hook_function('options_identities_buttons', array($empty, $id));
170 $return_str .= ' </td>' . "\n";
171 $return_str .= '</tr>' . "\n";
172 $return_str .= '<tr>' . "\n";
173 $return_str .= ' <td colspan="2"> &nbsp; </td>' . "\n";
174 $return_str .= '</tr>';
175
176 return $return_str;
aaf9abef 177
01265fba 178}
179
0f01b5d7 180/**
181 * Creates html formated table row with input field
182 * @param string $title Name displayed next to input field
183 * @param string $name Name of input field
184 * @param string $data Default value of input field (data is sanitized with htmlspecialchars)
185 * @param string $bgcolor html attributes added to row element (tr)
186 * @return string html formated table row with text input field
187 * @since 1.2.0 (arguments differ since 1.4.5/1.5.1)
188 * @todo check right-to-left language issues
189 * @access private
190 */
e7f9c987 191function sti_input( $title, $name, $data, $bgcolor ) {
192 $str = '';
193 $str .= '<tr' . $bgcolor . ">\n";
194 $str .= ' <td style="white-space: nowrap;text-align:right;">' . $title . ' </td>' . "\n";
195 $str .= ' <td> <input type="text" name="' . $name . '" size="50" value="'. htmlspecialchars($data) . '"> </td>' . "\n";
196 $str .= '</tr>';
bb51bc8b 197
e7f9c987 198 return $str;
aaf9abef 199
e7f9c987 200}
201
0f01b5d7 202/**
203 * Creates html formated table row with textarea field
204 * @param string $title Name displayed next to textarea field
205 * @param string $name Name of textarea field
206 * @param string $data Default value of textarea field (data is sanitized with htmlspecialchars)
207 * @param string $bgcolor html attributes added to row element (tr)
208 * @return string html formated table row with textarea
209 * @since 1.2.5 (arguments differ since 1.4.5/1.5.1)
210 * @todo check right-to-left language issues
211 * @access private
212 */
e7f9c987 213function sti_textarea( $title, $name, $data, $bgcolor ) {
214 $str = '';
215 $str .= '<tr' . $bgcolor . ">\n";
216 $str .= ' <td style="white-space: nowrap;text-align:right;">' . $title . ' </td>' . "\n";
217 $str .= ' <td> <textarea name="' . $name . '" cols="50" rows="5">'. htmlspecialchars($data) . '</textarea> </td>' . "\n";
218 $str .= '</tr>';
bb51bc8b 219
e7f9c987 220 return $str;
545238b1 221
aaf9abef 222}
a2b193bc 223
0f01b5d7 224?>