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