source: subversion/trunk/roundcubemail/program/steps/settings/func.inc @ 1882

Last change on this file since 1882 was 1882, checked in by alec, 5 years ago
  • read current language from rcube_user object (config may contains 'pl', but user 'pl_PL')
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 15.5 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/steps/settings/func.inc                                       |
6 |                                                                       |
7 | This file is part of the RoundCube Webmail client                     |
8 | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |   Provide functionality for user's settings & preferences             |
13 |                                                                       |
14 +-----------------------------------------------------------------------+
15 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16 +-----------------------------------------------------------------------+
17
18 $Id$
19
20*/
21
22if (!$OUTPUT->ajax_call)
23  $OUTPUT->set_pagetitle(rcube_label('preferences'));
24
25function rcmail_user_prefs_form($attrib)
26{
27  global $RCMAIL;
28  $config = $RCMAIL->config->all();
29
30  $no_override = is_array($config['dont_override']) ? array_flip($config['dont_override']) : array();
31
32  // add some labels to client
33  rcube_add_label('nopagesizewarning');
34 
35  list($form_start, $form_end) = get_form_tags($attrib, 'save-prefs');
36  unset($attrib['form']);
37
38  $out = $form_start;
39  $table = new html_table(array('cols' => 2));
40
41  // show language selection
42  if (!isset($no_override['language'])) {
43    $a_lang = $RCMAIL->list_languages();
44    asort($a_lang);
45 
46    $field_id = 'rcmfd_lang';
47    $select_lang = new html_select(array('name' => '_language', 'id' => $field_id));
48    $select_lang->add(array_values($a_lang), array_keys($a_lang));
49 
50    $table->add('title', html::label($field_id, Q(rcube_label('language'))));
51    $table->add(null, $select_lang->show($RCMAIL->user->language));
52  }
53
54
55  // show page size selection
56  if (!isset($no_override['timezone'])) {
57    $field_id = 'rcmfd_timezone';
58    $select_timezone = new html_select(array('name' => '_timezone', 'id' => $field_id, 'onchange' => "document.getElementById('rcmfd_dst').disabled=this.selectedIndex==0"));
59    $select_timezone->add(rcube_label('autodetect'), 'auto');
60    $select_timezone->add('(GMT -11:00) Midway Island, Samoa', '-11');
61    $select_timezone->add('(GMT -10:00) Hawaii', '-10');
62    $select_timezone->add('(GMT -9:30) Marquesas Islands', '-9.5');
63    $select_timezone->add('(GMT -9:00) Alaska', '-9');
64    $select_timezone->add('(GMT -8:00) Pacific Time (US/Canada)', '-8');
65    $select_timezone->add('(GMT -7:00) Mountain Time (US/Canada)', '-7');
66    $select_timezone->add('(GMT -6:00) Central Time (US/Canada), Mexico City', '-6');
67    $select_timezone->add('(GMT -5:00) Eastern Time (US/Canada), Bogota, Lima', '-5');
68    $select_timezone->add('(GMT -4:30) Caracas', '-4.5');
69    $select_timezone->add('(GMT -4:00) Atlantic Time (Canada), La Paz', '-4');
70    $select_timezone->add('(GMT -3:30) Nfld Time (Canada), Nfld, S. Labador', '-3.5');
71    $select_timezone->add('(GMT -3:00) Brazil, Buenos Aires, Georgetown', '-3');
72    $select_timezone->add('(GMT -2:00) Mid-Atlantic', '-2');
73    $select_timezone->add('(GMT -1:00) Azores, Cape Verde Islands', '-1');
74    $select_timezone->add('(GMT) Western Europe, London, Lisbon, Casablanca', '0');
75    $select_timezone->add('(GMT +1:00) Central European Time', '1');
76    $select_timezone->add('(GMT +2:00) EET: Kaliningrad, South Africa', '2');
77    $select_timezone->add('(GMT +3:00) Baghdad, Kuwait, Riyadh, Moscow, Nairobi', '3');
78    $select_timezone->add('(GMT +3:30) Tehran', '3.5');
79    $select_timezone->add('(GMT +4:00) Abu Dhabi, Muscat, Baku, Tbilisi', '4');
80    $select_timezone->add('(GMT +4:30) Kabul', '4.5');
81    $select_timezone->add('(GMT +5:00) Ekaterinburg, Islamabad, Karachi', '5');
82    $select_timezone->add('(GMT +5:30) Chennai, Kolkata, Mumbai, New Delhi', '5.5');
83    $select_timezone->add('(GMT +5:45) Kathmandu', '5.75');
84    $select_timezone->add('(GMT +6:00) Almaty, Dhaka, Colombo', '6');
85    $select_timezone->add('(GMT +6:30) Cocos Islands, Myanmar', '6.5');
86    $select_timezone->add('(GMT +7:00) Bangkok, Hanoi, Jakarta', '7');
87    $select_timezone->add('(GMT +8:00) Beijing, Perth, Singapore, Taipei', '8');
88    $select_timezone->add('(GMT +8:45) Caiguna, Eucla, Border Village', '8.75');
89    $select_timezone->add('(GMT +9:00) Tokyo, Seoul, Yakutsk', '9');
90    $select_timezone->add('(GMT +9:30) Adelaide, Darwin', '9.5');
91    $select_timezone->add('(GMT +10:00) EAST/AEST: Sydney, Guam, Vladivostok', '10');
92    $select_timezone->add('(GMT +10:30) New South Wales', '10.5');
93    $select_timezone->add('(GMT +11:00) Magadan, Solomon Islands', '11');
94    $select_timezone->add('(GMT +11:30) Norfolk Island', '11.5');
95    $select_timezone->add('(GMT +12:00) Auckland, Wellington, Kamchatka', '12');
96    $select_timezone->add('(GMT +12:45) Chatham Islands', '12.75');
97    $select_timezone->add('(GMT +13:00) Tonga, Pheonix Islands', '13');
98    $select_timezone->add('(GMT +14:00) Kiribati', '14');
99 
100    $table->add('title', html::label($field_id, Q(rcube_label('timezone'))));
101    $table->add(null, $select_timezone->show((string)$config['timezone']));
102  }
103
104  // daylight savings
105  if (!isset($no_override['dst_active'])) {
106    $field_id = 'rcmfd_dst';
107    $input_dst = new html_checkbox(array('name' => '_dst_active', 'id' => $field_id, 'value' => 1, 'disabled' => ($config['timezone'] === 'auto')));
108   
109    $table->add('title', html::label($field_id, Q(rcube_label('dstactive'))));
110    $table->add(null, $input_dst->show($config['dst_active']));
111  }
112
113  // MM: Show checkbox for toggling 'pretty dates'
114  if (!isset($no_override['prettydate'])) {
115    $field_id = 'rcmfd_prettydate';
116    $input_prettydate = new html_checkbox(array('name' => '_pretty_date', 'id' => $field_id, 'value' => 1));
117
118    $table->add('title', html::label($field_id, Q(rcube_label('prettydate'))));
119    $table->add(null, $input_prettydate->show($config['prettydate']?1:0));
120  }
121
122  // show page size selection
123  if (!isset($no_override['pagesize'])) {
124    $field_id = 'rcmfd_pgsize';
125    $input_pagesize = new html_inputfield(array('name' => '_pagesize', 'id' => $field_id, 'size' => 5));
126
127    $table->add('title', html::label($field_id, Q(rcube_label('pagesize'))));
128    $table->add(null, $input_pagesize->show($config['pagesize']));
129  }
130
131  // show drop-down for available skins
132  if (!isset($no_override['skin'])) {
133    $skins = rcmail_get_skins();
134
135    if (count($skins) > 1) {
136      $field_id = 'rcmfd_skin';
137      $input_skin = new html_select(array('name'=>'_skin', 'id'=>$field_id));
138     
139      foreach($skins as $skin)
140        $input_skin->add($skin, $skin);
141
142      $table->add('title', html::label($field_id, Q(rcube_label('skin'))));
143      $table->add(null, $input_skin->show($config['skin']));
144    }
145  }
146
147  $out .= html::tag('fieldset', null, html::tag('legend', null, Q(rcube_label('uisettings'))) . $table->show($attrib));
148 
149  $table = new html_table(array('cols' => 2));
150
151  // show config parameter for preview pane
152  if (!isset($no_override['preview_pane'])) {
153    $field_id = 'rcmfd_preview';
154    $input_preview = new html_checkbox(array('name' => '_preview_pane', 'id' => $field_id, 'value' => 1));
155   
156    $table->add('title', html::label($field_id, Q(rcube_label('previewpane'))));
157    $table->add(null, $input_preview->show($config['preview_pane']?1:0));
158  }
159
160  if (!isset($no_override['mdn_requests'])) {
161    $field_id = 'rcmfd_mdn_requests';
162    $select_mdn_requests = new html_select(array('name' => '_mdn_requests', 'id' => $field_id));
163    $select_mdn_requests->add(rcube_label('askuser'), 0);
164    $select_mdn_requests->add(rcube_label('autosend'), 1);
165    $select_mdn_requests->add(rcube_label('ignore'), 2);
166
167    $table->add('title', html::label($field_id, Q(rcube_label('mdnrequests'))));
168    $table->add(null, $select_mdn_requests->show($config['mdn_requests']));
169  }
170
171  $out .= html::tag('fieldset', null, html::tag('legend', null, Q(rcube_label('mailboxview'))) . $table->show($attrib));
172
173  $table = new html_table(array('cols' => 2));
174
175  // show checkbox for HTML/plaintext messages
176  if (!isset($no_override['prefer_html'])) {
177    $field_id = 'rcmfd_htmlmsg';
178    $input_preferhtml = new html_checkbox(array('name' => '_prefer_html', 'id' => $field_id, 'value' => 1,
179      'onchange' => JS_OBJECT_NAME.'.toggle_prefer_html(this)'));
180
181    $table->add('title', html::label($field_id, Q(rcube_label('preferhtml'))));
182    $table->add(null, $input_preferhtml->show($config['prefer_html']?1:0));
183  }
184
185  // show checkbox for displaying images from people in the addressbook
186  if (!isset($no_override['addrbook_show_images'])) {
187    $field_id = 'rcmfd_addrbook_show_images';
188    $input_addrbook_show_images = new html_checkbox(array('name' => '_addrbook_show_images', 'id' => $field_id,
189      'value' => 1, 'disabled' => $config['prefer_html']?0:1));
190
191    $table->add('title', html::label($field_id, Q(rcube_label('showknownimages'))));
192    $table->add(null, $input_addrbook_show_images->show($config['addrbook_show_images']?1:0));
193  }
194
195  if (!isset($no_override['inline_images'])) {
196    $field_id = 'rcmfd_inline_images';
197    $input_inline_images = new html_checkbox(array('name' => '_inline_images', 'id' => $field_id, 'value' => 1));
198
199    $table->add('title', html::label($field_id, Q(rcube_label('showinlineimages'))));
200    $table->add(null, $input_inline_images->show($config['inline_images']?1:0));
201  }
202
203  $out .= html::tag('fieldset', null, html::tag('legend', null, Q(rcube_label('messagesdisplaying'))) . $table->show($attrib));
204 
205  $table = new html_table(array('cols' => 2));
206
207  // Show checkbox for HTML Editor
208  if (!isset($no_override['htmleditor'])) {
209    $field_id = 'rcmfd_htmleditor';
210    $input_htmleditor = new html_checkbox(array('name' => '_htmleditor', 'id' => $field_id, 'value' => 1));
211   
212    $table->add('title', html::label($field_id, Q(rcube_label('htmleditor'))));
213    $table->add(null, $input_htmleditor->show($config['htmleditor']?1:0));
214  }
215                 
216  if (!isset($no_override['draft_autosave'])) {
217    $field_id = 'rcmfd_autosave';
218    $select_autosave = new html_select(array('name' => '_draft_autosave', 'id' => $field_id, 'disabled' => empty($config['drafts_mbox'])));
219    $select_autosave->add(rcube_label('never'), 0);
220    foreach (array(3, 5, 10) as $i => $min)
221      $select_autosave->add(rcube_label(array('name' => 'everynminutes', 'vars' => array('n' => $min))), $min*60);
222
223    $table->add('title', html::label($field_id, Q(rcube_label('autosavedraft'))));
224    $table->add(null, $select_autosave->show($config['draft_autosave']));
225  }
226
227  $out .= html::tag('fieldset', null, html::tag('legend', null, Q(rcube_label('messagescomposition'))) . $table->show($attrib));
228
229  // Configure special folders
230  if (!isset($no_override['default_imap_folders'])) {
231    $RCMAIL->imap_init(true);
232    $select = rcmail_mailbox_select(array('noselection' => '---', 'realnames' => true, 'maxlength' => 30));
233   
234    $table = new html_table(array('cols' => 2));
235
236    $table->add('title', Q(rcube_label('drafts')));
237    $table->add(null, $select->show($config['drafts_mbox'], array('name' => "_drafts_mbox", 'onchange' => "document.getElementById('rcmfd_autosave').disabled=this.selectedIndex==0")));
238   
239    $table->add('title', Q(rcube_label('sent')));
240    $table->add(null, $select->show($config['sent_mbox'], array('name' => "_sent_mbox")));
241   
242    $table->add('title', Q(rcube_label('junk')));
243    $table->add(null, $select->show($config['junk_mbox'], array('name' => "_junk_mbox")));
244   
245    $table->add('title', Q(rcube_label('trash')));
246    $table->add(null, $select->show($config['trash_mbox'], array('name' => "_trash_mbox")));
247   
248    $out .= html::tag('fieldset', null, html::tag('legend', null, Q(rcube_label('specialfolders'))) . $table->show($attrib));
249  }
250
251  $table = new html_table(array('cols' => 2));
252
253  if (!isset($no_override['read_when_deleted'])) {
254    $field_id = 'rcmfd_read_deleted';
255    $input_readdeleted = new html_checkbox(array('name' => '_read_when_deleted', 'id' => $field_id, 'value' => 1));
256   
257    $table->add('title', html::label($field_id, Q(rcube_label('readwhendeleted'))));
258    $table->add(null, $input_readdeleted->show($config['read_when_deleted']?1:0));
259  }
260
261  if (!isset($no_override['flag_for_deletion'])) {
262    $field_id = 'rcmfd_flag_for_deletion';
263    $input_flagfordeletion = new html_checkbox(array('name' => '_flag_for_deletion', 'id' => $field_id, 'value' => 1));
264   
265    $table->add('title', html::label($field_id, Q(rcube_label('flagfordeletion'))));
266    $table->add(null, $input_flagfordeletion->show($config['flag_for_deletion']?1:0));
267  }
268
269  // Trash purging on logout
270  if (!isset($no_override['logout_purge'])) {
271    $field_id = 'rcmfd_logout_purge';
272    $input_purge = new html_checkbox(array('name' => '_logout_purge', 'id' => $field_id, 'value' => 1));
273   
274    $table->add('title', html::label($field_id, Q(rcube_label('logoutclear'))));
275    $table->add(null, $input_purge->show($config['logout_purge']?1:0));
276  }
277
278  // INBOX compacting on logout
279  if (!isset($no_override['logout_expunge'])) {
280    $field_id = 'rcmfd_logout_expunge';
281    $input_expunge = new html_checkbox(array('name' => '_logout_expunge', 'id' => $field_id, 'value' => 1));
282
283    $table->add('title', html::label($field_id, Q(rcube_label('logoutcompact'))));
284    $table->add(null, $input_expunge->show($config['logout_expunge']?1:0));
285  }
286
287  $out .= html::tag('fieldset', null, html::tag('legend', null, Q(rcube_label('serversettings'))) . $table->show($attrib));
288
289  return $out . $form_end;
290  }
291
292
293
294function rcmail_identities_list($attrib)
295  {
296  global $OUTPUT, $USER;
297
298  // add id to message list table if not specified
299  if (!strlen($attrib['id']))
300    $attrib['id'] = 'rcmIdentitiesList';
301
302  // define list of cols to be displayed
303  $a_show_cols = array('name', 'email');
304
305  // create XHTML table 
306  $out = rcube_table_output($attrib, $USER->list_identities(), $a_show_cols, 'identity_id');
307 
308  // set client env
309  $OUTPUT->add_gui_object('identitieslist', $attrib['id']);
310
311  return $out;
312  }
313
314
315
316// similar function as in /steps/addressbook/edit.inc
317function get_form_tags($attrib, $action, $add_hidden=array())
318  {
319  global $EDIT_FORM, $RCMAIL;
320
321  $form_start = '';
322  if (!strlen($EDIT_FORM))
323    {
324    $hiddenfields = new html_hiddenfield(array('name' => '_task', 'value' => $RCMAIL->task));
325    $hiddenfields->add(array('name' => '_action', 'value' => $action));
326   
327    if ($add_hidden)
328      $hiddenfields->add($add_hidden);
329   
330    $form_start = !strlen($attrib['form']) ? $RCMAIL->output->form_tag(array('name' => "form", 'method' => "post")) : '';
331    $form_start .= $hiddenfields->show();
332    }
333   
334  $form_end = (!strlen($EDIT_FORM) && !strlen($attrib['form'])) ? '</form>' : '';
335  $form_name = strlen($attrib['form']) ? $attrib['form'] : 'form';
336
337  if (!strlen($EDIT_FORM))
338    $RCMAIL->output->add_gui_object('editform', $form_name);
339 
340  $EDIT_FORM = $form_name;
341
342  return array($form_start, $form_end);
343  }
344
345function rcmail_get_skins()
346  {
347  $path = 'skins';
348  $skins = array();
349
350  $dir = opendir($path);
351 
352  if (!$dir)
353        return false;
354 
355  while (($file = readdir($dir)) !== false)
356    {
357    $filename = $path.'/'.$file;
358    if (is_dir($filename) && is_readable($filename)
359        && !in_array($file, array('.', '..', '.svn')))
360      $skins[] = $file;
361    }
362
363  closedir($dir);
364
365  return $skins;
366  }
367
368$OUTPUT->set_env('multiple_identities', $RCMAIL->config->get('multiple_identities', true));
369
370// register UI objects
371$OUTPUT->add_handlers(array(
372  'userprefs' => 'rcmail_user_prefs_form',
373  'identitieslist' => 'rcmail_identities_list',
374  'itentitieslist' => 'rcmail_identities_list'  // keep this for backward compatibility
375));
376
377
378?>
Note: See TracBrowser for help on using the repository browser.