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