source: trunk/expressoMail1_2/inc/hook_settings.inc.php @ 1291

Revision 1291, 16.0 KB checked in by amuller, 15 years ago (diff)

Ticket #485 - Correção das preferencias do EM

  • Property svn:executable set to *
Line 
1<?php
2if(!isset($GLOBALS['phpgw_info'])){
3        $GLOBALS['phpgw_info']['flags'] = array(
4                'currentapp' => 'expressoMail1_2',
5                'nonavbar'   => true,
6                'noheader'   => true
7        );
8}
9require_once '../header.inc.php';
10
11        /**************************************************************************\
12        * eGroupWare - ExpressoMail Preferences                                    *
13        * http://www.expressolivre.org                                             *   
14        * Modified by Alexandre Felipe Muller de Souza <amuller@celepar.pr.gov.br> *
15        * --------------------------------------------                             *
16        *  This program is free software; you can redistribute it and/or modify it *
17        *  under the terms of the GNU General Public License as published by the   *
18        *  Free Software Foundation; either version 2 of the License, or (at your  *
19        *  option) any later version.                                              *
20        \**************************************************************************/
21include_once("fckeditor.php");
22$type = $_GET['type']; // FIX ME
23
24//if ($type == 'user' || $type == ''){
25create_html_code("script", '<script language="JavaScript" type="text/javascript">
26function exibir_ocultar()
27{
28    var type = ("'.$type.'" == "") ? "user" : "'.$type.'";
29    var use_signature_digital_cripto = document.getElementsByName(type+"[use_signature_digital_cripto]")[0];
30    var default_signature_digital_cripto = "'.$GLOBALS['phpgw_info']['default']['preferences']['expressoMail']['use_signature_digital_cripto'].'";
31
32    if (use_signature_digital_cripto)
33    {
34        var element_signature_digital = document.getElementById(type+"[use_signature_digital]");
35        var element_signature_cripto = document.getElementById(type+"[use_signature_cripto]");
36
37        switch (use_signature_digital_cripto[use_signature_digital_cripto.selectedIndex].value){
38
39            case "1":
40                element_signature_digital.style.display="";
41                element_signature_cripto.style.display="";
42                break;
43            case "0":
44                element_signature_digital.style.display="none";
45                element_signature_cripto.style.display="none";
46                break;
47            case "":
48                if (default_signature_digital_cripto){
49                    element_signature_digital.style.display="";
50                    element_signature_cripto.style.display="";
51                 }
52                 else
53                 {
54                    element_signature_digital.style.display="none";
55                    element_signature_cripto.style.display="none";
56                 }
57
58        }
59
60    }
61
62}',
63
64'</script>');
65//}
66
67$default = array(
68        '25'    => '25',
69        '50'    => '50',
70        '75'    => '75',
71        '100'   => '100'
72);
73
74create_select_box('What is the maximum number of messages per page?','max_email_per_page',$default,'This is the number of messages shown in your mailbox per page');
75create_check_box('Save deleted messages in trash folder?','save_deleted_msg','When delete message, send it automatically to trash folder');
76$default = array(
77        '1'    => lang('1 day'),
78        '2'    => lang('2 days'),
79        '3'    => lang('3 days'),
80        '4'   => lang('4 days'),
81        '5'   => lang('5 days')
82);
83
84create_select_box('Delete trash messages after how many days?','delete_trash_messages_after_n_days',$default,'Delete automatically the messages in trash folder in how many days');
85create_check_box('Would you like to use local messages?','use_local_messages','Enabling this options you will be able to store messages in your local computer');
86create_check_box('Would you like to keep archived messages?','keep_archived_messages','After store email in your local computer delete it from server');
87create_check_box('Show previous message, after delete actual message?','delete_and_show_previous_message','Enable this option if you want to read the next message everytime you delete a message');
88create_check_box('Do you wanna receive an alert for new messages?','alert_new_msg','Everytime you receive new messages you will be informed');
89create_check_box('Show default view on main screen?','mainscreen_showmail','Show unread messages in your home page');
90create_check_box('Do you want to use remove attachments function?','remove_attachments_function','It allow you to remove attachments from messages');
91create_check_box('Do you want to use important flag in email editor?','use_important_flag','It allow you to send emails with important flag, but you can receive unwanted messages with important flag');
92
93//Use user folders from email
94if ($type != "" && $type != "user"){
95        $trash = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultTrashFolder'];
96        $drafts = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultDraftsFolder'];
97        $spam = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSpamFolder'];
98        $sent = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSentFolder'];
99        $default = Array(
100                'INBOX' =>      lang('INBOX'),
101                'INBOX/'.$trash => $trash, 
102                'INBOX/'.$drafts => $drafts,
103                'INBOX/'.$spam => $spam,
104                'INBOX/'.$sent => $sent
105        );
106}
107else
108{
109        require_once('class.imap_functions.inc.php');
110        $boemailadmin = CreateObject('emailadmin.bo');
111        $emailadmin_profile = $boemailadmin->getProfileList();
112        $_SESSION['phpgw_info']['expressomail']['email_server'] = $boemailadmin->getProfile($emailadmin_profile[0]['profileID']);
113        $_SESSION['phpgw_info']['expressomail']['user'] = $GLOBALS['phpgw_info']['user'];
114        $e_server = $_SESSION['phpgw_info']['expressomail']['email_server'];
115        $imap = CreateObject('expressoMail1_2.imap_functions');
116        $save_in_folder_selected = $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['save_in_folder'];
117
118        // Load Special Folders (Sent, Trash, Draft, Spam) from EmailAdmin (if exists, else get_lang)
119        $specialFolders = array ("Trash" => lang("Trash"), "Drafts" => lang("Drafts"), "Spam" => lang("Spam"), "Sent" => lang("Sent"));
120        foreach ($specialFolders as $key => $value){
121                if($e_server['imapDefault'.$key.'Folder'])
122                        $specialFolders[$key] = $e_server['imapDefault'.$key.'Folder'];
123        }
124        unset($default);
125        $default[-1] = lang('Select on send');
126        foreach($imap -> get_folders_list() as $id => $folder){
127                if (!(is_numeric($id) || strstr($folder['folder_id'],"user".$e_server['imapDelimiter'])))
128                        continue;
129                else{
130                        // Translate INBOX (root folder)
131                        if (strtolower($folder['folder_name']) == "inbox")
132                                $folder['folder_name'] = lang("Inbox");
133                        // Translate Special Folders
134                        elseif (($keyFolder = array_search($folder['folder_name'], $specialFolders)) !== false)
135                                $folder['folder_name'] = lang($keyFolder);
136                        // Identation for subfolders
137                        $folder_id = explode($e_server['imapDelimiter'],$folder['folder_id']);       
138                        $level = count($folder_id);
139                        $ident = '';
140                        for($i = 2; $level > 2 && $i < $level;$i++)
141                                $ident .= ' - ';
142                        $default[$folder['folder_id']] = $ident.$folder['folder_name'];
143                }
144        }
145}
146create_select_box('Save sent messages in folder','save_in_folder',$default,'Save automatically sent messages in selected folder');
147create_check_box('Hide menu folders?','hide_folders','You can use it if your screen does not have good resolution');
148
149$default = array(
150        '20' => lang('normal'),
151        '30' => lang('medium'),
152        '40' => lang('big')
153);
154
155create_select_box('What is the height of the lines in the list of messages?','line_height',$default,'');
156$default = array(
157        '10' => lang('small'),
158        '11' => lang('normal'),
159        '15' => lang('big')
160);
161
162create_select_box('What the font size in the list of messages?','font_size',$default,'');
163create_check_box('Use dynamic contacts?','use_dynamic_contacts','Store your\'s most used contacts');
164create_check_box('Use shortcuts?','use_shortcuts','');
165create_check_box('Auto save draft','auto_save_draft','When you are away from computer it saves automatically the message you are writing');
166$default = array(
167        '65536' => lang('unlimited'),
168        '640' => '640',
169        '768' => '768',
170        '800' => '800',
171        '1024' => '1024',
172        '1080' => '1080'
173);
174
175create_select_box('What is the maximum size of embedded images?','image_size',$default,'When user send an email with image in body message, it changes the size');
176
177if($GLOBALS['phpgw_info']['server']['use_assinar_criptografar'])
178{
179    create_check_box('Enable digitally sign/cipher the message?','use_signature_digital_cripto','','',True,'onchange="javascript:exibir_ocultar();"');
180    if ($GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['use_signature_digital_cripto'])
181    {
182        create_check_box('Always sign message digitally?','use_signature_digital','');
183        create_check_box('Always cipher message digitally?','use_signature_cripto','');
184    }
185    else
186    {
187        create_check_box('Always sign message digitally?','use_signature_digital','','',True,'',False);
188        create_check_box('Always cipher message digitally?','use_signature_cripto','','',True,'',False);
189    }
190}
191
192$default = array(
193        'text' => lang('simple text'),
194        'html' => lang('rich text')
195);
196create_check_box('Insert signature automatically in new messages?','use_signature','');
197create_select_box('Signature Type','type_signature',$default,'','','','onchange="javascript:changeType(this.value);" onload="javascript:alert(this.value);"');
198
199if ($type == 'user' || $type == ''){
200        $oFCKeditor = new FCKeditor('html_signature');
201        $oFCKeditor->BasePath   = '../expressoMail1_2/js/fckeditor/';
202        $oFCKeditor->ToolbarSet = 'ExpressoLivre';
203
204        $vars = $GLOBALS['phpgw']->preferences->user[$appname];
205
206        create_html_code("signature","<div id='text_signature'>
207                <textarea rows='5' cols='50' id='user_signature' name='user[signature]'>","</textarea></div>
208                <div style='display:none;' id='html_signature'>".$oFCKeditor->Create()."</div>
209                <script language='javascript'>
210document.getElementById('user_signature').value  = '".$vars['signature']."';
211function changeType(value){
212        var html_signature = FCKeditorAPI.GetInstance(\"html_signature\");
213        if(value == 'text'){
214                document.getElementById('user_signature').value = html_signature.GetHTML();
215                document.getElementById(\"text_signature\").style.display = '';
216                document.getElementById(\"html_signature\").style.display = 'none';
217        }
218        else if(value == 'html'){
219                html_signature.SetHTML(document.getElementById('user_signature').value);
220                document.getElementById(\"text_signature\").style.display = 'none';
221                document.getElementById(\"html_signature\").style.display  = '';
222        }
223}
224function get_html_translation_table(table, quote_style) {
225    // http://kevin.vanzonneveld.net
226    var entities = {}, hash_map = {}, decimal = 0, symbol = '';
227    var constMappingTable = {}, constMappingQuoteStyle = {};
228    var useTable = {}, useQuoteStyle = {};
229    // Translate arguments
230    constMappingTable[0]      = 'HTML_SPECIALCHARS';
231    constMappingTable[1]      = 'HTML_ENTITIES';
232    constMappingQuoteStyle[0] = 'ENT_NOQUOTES';
233    constMappingQuoteStyle[2] = 'ENT_COMPAT';
234    constMappingQuoteStyle[3] = 'ENT_QUOTES';
235 
236    useTable       = !isNaN(table) ? constMappingTable[table] : table ? table.toUpperCase() : 'HTML_SPECIALCHARS';
237    useQuoteStyle = !isNaN(quote_style) ? constMappingQuoteStyle[quote_style] : quote_style ? quote_style.toUpperCase() : 'ENT_COMPAT';
238 
239    if (useTable !== 'HTML_SPECIALCHARS' && useTable !== 'HTML_ENTITIES') {
240        throw new Error(\"Table: \"+useTable+' not supported');
241        // return false;
242    }
243 
244    entities['38'] = '&amp;';
245    if (useTable === 'HTML_ENTITIES') {
246        entities['160'] = '&nbsp;';
247        entities['161'] = '&iexcl;';
248        entities['162'] = '&cent;';
249        entities['163'] = '&pound;';
250        entities['164'] = '&curren;';
251        entities['165'] = '&yen;';
252        entities['166'] = '&brvbar;';
253        entities['167'] = '&sect;';
254        entities['168'] = '&uml;';
255        entities['169'] = '&copy;';
256        entities['170'] = '&ordf;';
257        entities['171'] = '&laquo;';
258        entities['172'] = '&not;';
259        entities['173'] = '&shy;';
260        entities['174'] = '&reg;';
261        entities['175'] = '&macr;';
262        entities['176'] = '&deg;';
263        entities['177'] = '&plusmn;';
264        entities['178'] = '&sup2;';
265        entities['179'] = '&sup3;';
266        entities['180'] = '&acute;';
267        entities['181'] = '&micro;';
268        entities['182'] = '&para;';
269        entities['183'] = '&middot;';
270        entities['184'] = '&cedil;';
271        entities['185'] = '&sup1;';
272        entities['186'] = '&ordm;';
273        entities['187'] = '&raquo;';
274        entities['188'] = '&frac14;';
275        entities['189'] = '&frac12;';
276        entities['190'] = '&frac34;';
277        entities['191'] = '&iquest;';
278        entities['192'] = '&Agrave;';
279        entities['193'] = '&Aacute;';
280        entities['194'] = '&Acirc;';
281        entities['195'] = '&Atilde;';
282        entities['196'] = '&Auml;';
283        entities['197'] = '&Aring;';
284        entities['198'] = '&AElig;';
285        entities['199'] = '&Ccedil;';
286        entities['200'] = '&Egrave;';
287        entities['201'] = '&Eacute;';
288        entities['202'] = '&Ecirc;';
289        entities['203'] = '&Euml;';
290        entities['204'] = '&Igrave;';
291        entities['205'] = '&Iacute;';
292        entities['206'] = '&Icirc;';
293        entities['207'] = '&Iuml;';
294        entities['208'] = '&ETH;';
295        entities['209'] = '&Ntilde;';
296        entities['210'] = '&Ograve;';
297        entities['211'] = '&Oacute;';
298        entities['212'] = '&Ocirc;';
299        entities['213'] = '&Otilde;';
300        entities['214'] = '&Ouml;';
301        entities['215'] = '&times;';
302        entities['216'] = '&Oslash;';
303        entities['217'] = '&Ugrave;';
304        entities['218'] = '&Uacute;';
305        entities['219'] = '&Ucirc;';
306        entities['220'] = '&Uuml;';
307        entities['221'] = '&Yacute;';
308        entities['222'] = '&THORN;';
309        entities['223'] = '&szlig;';
310        entities['224'] = '&agrave;';
311        entities['225'] = '&aacute;';
312        entities['226'] = '&acirc;';
313        entities['227'] = '&atilde;';
314        entities['228'] = '&auml;';
315        entities['229'] = '&aring;';
316        entities['230'] = '&aelig;';
317        entities['231'] = '&ccedil;';
318        entities['232'] = '&egrave;';
319        entities['233'] = '&eacute;';
320        entities['234'] = '&ecirc;';
321        entities['235'] = '&euml;';
322        entities['236'] = '&igrave;';
323        entities['237'] = '&iacute;';
324        entities['238'] = '&icirc;';
325        entities['239'] = '&iuml;';
326        entities['240'] = '&eth;';
327        entities['241'] = '&ntilde;';
328        entities['242'] = '&ograve;';
329        entities['243'] = '&oacute;';
330        entities['244'] = '&ocirc;';
331        entities['245'] = '&otilde;';
332        entities['246'] = '&ouml;';
333        entities['247'] = '&divide;';
334        entities['248'] = '&oslash;';
335        entities['249'] = '&ugrave;';
336        entities['250'] = '&uacute;';
337        entities['251'] = '&ucirc;';
338        entities['252'] = '&uuml;';
339        entities['253'] = '&yacute;';
340        entities['254'] = '&thorn;';
341        entities['255'] = '&yuml;';
342    }
343    if (useQuoteStyle !== 'ENT_NOQUOTES') {
344        entities['34'] = '&quot;';
345    }
346    if (useQuoteStyle === 'ENT_QUOTES') {
347        entities['39'] = '&#39;';
348    }
349    entities['60'] = '&lt;';
350    entities['62'] = '&gt;';
351 
352    // ascii decimals to real symbols
353    for (decimal in entities) {
354        symbol = String.fromCharCode(decimal);
355        hash_map[symbol] = entities[decimal];
356    }
357    return hash_map;
358}
359function html_entity_decode( string, quote_style ) {
360    // http://kevin.vanzonneveld.net
361    var hash_map = {}, symbol = '', tmp_str = '', entity = '';
362    tmp_str = string.toString();
363    if (false === (hash_map = this.get_html_translation_table('HTML_ENTITIES', quote_style))) {
364        return false;
365    }
366    for (symbol in hash_map) {
367        entity = hash_map[symbol];
368        tmp_str = tmp_str.split(entity).join(symbol);
369    }
370    tmp_str = tmp_str.split('&#039;').join(\"'\");
371    return tmp_str;
372}
373
374function config_form(pObj,pHandler)
375{
376        pObj.onclick=function () { return pHandler(\"text\") };
377}
378document.getElementById('user_signature').value=html_entity_decode(document.getElementById('user_signature').innerHTML);
379
380setTimeout('config_form(document.getElementsByName(\'submit\')[0],changeType);changeType(document.getElementsByName(\'user[type_signature]\')[0].value==\'html\'?\'html\':\'\')',2000);
381</script>");
382}
383?>
Note: See TracBrowser for help on using the repository browser.