source: branches/2.2/mobile/inc/class.ui_mobilemail.inc.php @ 3600

Revision 3600, 42.3 KB checked in by eduardoalex, 13 years ago (diff)

Ticket #1408 - Ajustada a tela de enviar email do expresso mini.

  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare                                                               *
4        * http://www.egroupware.org                                                *
5        * The file written by Mário César Kolling <mario.kolling@serpro.gov.br>    *
6        * --------------------------------------------                             *
7        *  This program is free software; you can redistribute it and/or modify it *
8        *  under the terms of the GNU General Public License as published by the   *
9        *  Free Software Foundation; either version 2 of the License, or (at your  *
10        *  option) any later version.                                              *
11        \**************************************************************************/
12
13        //TODO: Criar a Classe Widget.
14
15        include_once(PHPGW_INCLUDE_ROOT.'/expressoMail1_2/inc/class.imap_functions.inc.php');
16
17        // Classe principal do Mini Mail
18        class ui_mobilemail{
19
20                // Define as funções públicas
21                var $public_functions = array(
22                        'mail_list'     => True,
23                        'change_folder' => True,
24                        'change_page'   => True,
25                        'show_msg'      => True,
26                        'send_mail'     => True,
27                        //'reply_msg'   => True,
28                        'new_msg'       => True,
29                        'delete_msg'    => True,
30                        'confirm_delete_msg'    => True,
31                        'init_schedule' => true,
32                        'add_recipients' => true,
33                        'add_recipient' => true,
34                        'list_folders' => true,
35                        'save_draft' => true,
36                        'mark_message_with_flag' => true,
37                        'change_search_box_type' => true,
38                        'index' => true
39                );
40
41                var $template;
42                var $common;
43                var $folders; // Pastas imap
44                var $current_search_box_type;
45                var $current_folder; // Pasta corrente
46                var $current_page; // Página corrente da lista de e-mails da pasta corrente
47                var $imap_functions; // Variável que recebe um objeto do tipo class.imap_functions.inc.php
48                var $allowed_tags = '<p><a><br><em><strong><ol><li><ul><div><font>'; // Tags html que não serão removidas
49                        // ao mostrar corpo do e-mail
50
51
52                /*
53                 * @function mobilemail
54                 * @abstract Método construtor da classe principal do Mini Mail
55                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
56                 */
57                function ui_mobilemail()
58                {
59                        $this-> load_session();                                         
60                        $this->template = CreateObject('phpgwapi.Template', PHPGW_SERVER_ROOT . '/mobile/templates/'.$GLOBALS['phpgw_info']['server']['template_set']);
61                        $this->common   = CreateObject('mobile.common_functions');
62                       
63                        // Recupera atributos da classe gravados na sessão
64                        $folders = $GLOBALS['phpgw']->session->appsession('mobilemail.folders','mobile');
65                        $current_folder = $GLOBALS['phpgw']->session->appsession('mobilemail.current_folder','mobile');
66                        $current_page = $GLOBALS['phpgw']->session->appsession('mobilemail.current_page','mobile');
67                        $current_search_box_type = $GLOBALS['phpgw']->session->appsession('mobilemail.current_search_box_type','mobile');
68                       
69                        // Inicializa a classe class.imap_functions.inc.php
70                        $this->imap_functions = new imap_functions();
71
72                        // Testa a existência dos atributos da classe recuperadas da sessão, e as carrega ou inicializa.
73                        if ($folders)
74                        {
75                                $this->folders = $folders;
76                        }
77                        else
78                        {
79                                $this->folders = $this->imap_functions->get_folders_list(array('noSharedFolders' => true));
80                        }
81
82                        if ($current_folder)
83                        {
84                                $this->current_folder = $current_folder;
85                                $current_page = 1;
86                        }
87                        else
88                        {
89                                $this->current_folder = 0; // Define o folder INBOX como o folder corrente
90                        }
91
92                        if ($current_page)
93                        {
94                                $this->current_page = $current_page;
95                        }
96                        else
97                        {
98                                $this->current_page = 1; // Define a primeira página como página padrão
99                        }
100                       
101                        if($current_search_box_type)
102                        {
103                                $this->current_search_box_type = $current_search_box_type;
104                        }
105                        else {
106                                $this->current_search_box_type = "all";
107                        }
108
109                }
110
111                /*
112                 * @function save_session
113                 * @abstract Salva os atributos da classe na sessão
114                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
115                 */
116                function save_session()
117                {
118                        $GLOBALS['phpgw']->session->appsession('mobilemail.folders','mobile',$this->folders);
119                        $GLOBALS['phpgw']->session->appsession('mobilemail.current_folder','mobile',$this->current_folder);
120                        $GLOBALS['phpgw']->session->appsession('mobilemail.current_page','mobile',$this->current_page);
121                        $GLOBALS['phpgw']->session->appsession('mobilemail.current_search_box_type','mobile',$this->current_search_box_type);
122                }
123
124                /*
125                 * @function change_page
126                 * @abstract Troca a página de exibição da lista de e-mails, e mostra a nova página
127                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
128                 */
129                function change_page($params)
130                {
131                        if (isset($params['page']))
132                        {
133                                $this->current_page = $params['page'];
134                        }
135                        $this->mail_list();
136                        $this->save_session();
137                }
138
139                function change_search_box_type($params) {
140                        if (isset($params['search_box_type']))
141                        {
142                                $this->current_search_box_type = $params['search_box_type'];
143                                $this->current_page = 1;
144                        }
145                        $this->mail_list();
146                        $this->save_session();
147                }
148
149                /*
150                 * @function change_folder
151                 * @abstract Troca a pasta do imap, e mostra a primeira página da nova pasta
152                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
153                 */
154                function change_folder($params)
155                {
156                        $folder = $params['folder'];
157                        if (isset($folder))
158                        {
159                                $this->current_folder = $folder;
160                                $this->current_page = 1;
161                                $this->current_search_box_type = "all";
162                        }
163                       
164                               
165                        $GLOBALS['phpgw_info']['mobiletemplate']->set_error_msg($params["error_message"]);
166                        $GLOBALS['phpgw_info']['mobiletemplate']->set_success_msg($params["success_message"]);
167                        $this->mail_list();
168                        $this->save_session();
169                }
170               
171                function mark_message_with_flag($params=array())
172                {
173                       
174                        if(isset($params['msgs']))
175                                $params["msgs_to_set"] = implode(",",$params["msgs"]);
176                       
177                        $return = $this->imap_functions->set_messages_flag($params);
178                       
179                        if($return)
180                                header('Location: index.php?menuaction=menuaction=mobile.ui_mobilemail.index&success_message='.lang("The messages were marked as seen"));
181                        else
182                                header('Location: index.php?menuaction=menuaction=mobile.ui_mobilemail.show_msg&msg_number='.$params["msgs_to_set"].'&msg_folder='.$return["msg_folder"].'&error_message='.$return["msg"]);
183                       
184                        exit;
185                }
186               
187                /*
188                 * @function show_msg
189                 * @abstract Mostra a mensagem de e-mail requisitada
190                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
191                 */
192                 // TODO: retirar msg_folder dos parâmentros necessários no GET e usar $this->current_folder
193                function show_msg($params = array())
194                {
195                        $msg = $this->imap_functions->get_info_msg($params);
196
197                        // Carrega o template
198                        $this->template->set_file(array('view_msg' => 'view_msg.tpl'));
199                        $this->template->set_block('view_msg', 'page');
200                        $this->template->set_block('view_msg', 'begin_anchor');
201                        $this->template->set_block('view_msg', 'end_anchor');
202                        $this->template->set_var('lang_back', lang("back"));
203                        $this->template->set_var('lang_reading_message', lang("Reading Message"));
204
205                        // Define o cabeçalho do e-mail
206                        $this->template->set_var('lang_from', lang("From"));
207                        $this->template->set_var('from', $msg['from']['full']);
208                        $this->template->set_var('lang_cc', lang("cc"));
209                        $this->template->set_var('cc', $msg['cc']);
210                        $this->template->set_var('size', $this->common->borkb($msg['Size']));
211
212                        $this->template->set_var('lang_subject', lang("Subject"));
213                        $this->template->set_var('subject', $msg['subject']);
214                        $this->template->set_var('date', $msg['msg_day']." ".$msg['msg_hour']);
215
216                        // Mostra o corpo do e-mail
217                        $this->template->set_var('body', strip_tags($msg['body'], $this->allowed_tags)); // Usa a função strip_tags() para filtrar
218                                // as tags que estão presentes no corpo do e-mail.
219                        $this->template->set_var('lang_link', lang("Return"));
220                        $this->template->set_var('return_link', "index.php?menuaction=mobile.ui_mobilemail.mail_list");
221
222                        $this->template->set_var('lang_reply_all', lang("Reply to all"));
223                        $this->template->set_var('lang_forward', lang("Forward"));
224                        $this->template->set_var('lang_mark_as_unread', lang("mark as unread"));
225                        $this->template->set_var('lang_reply', lang("Reply"));
226                        $this->template->set_var('lang_delete', lang("Delete"));
227                        $msg_number = $params['msg_number'];
228                        $msg_folder = $params['msg_folder'];
229                        $this->template->set_var('mark_as_unread_link', "index.php?menuaction=mobile.ui_mobilemail.mark_message_with_flag&flag=unseen&msgs_to_set=$msg_number&msg_folder=$msg_folder");
230                        $this->template->set_var('reply_link', "index.php?menuaction=mobile.ui_mobilemail.new_msg&msg_number=$msg_number&msg_folder=$msg_folder");
231                        $this->template->set_var('delete_link', "index.php?menuaction=mobile.ui_mobilemail.confirm_delete_msg&msg_number=$msg_number&msg_folder=$msg_folder");
232                        $this->template->set_var('reply_all_link', "index.php?menuaction=mobile.ui_mobilemail.new_msg&msg_number=$msg_number&msg_folder=$msg_folder&type=reply_all");
233                        $this->template->set_var('forward_link', "index.php?menuaction=mobile.ui_mobilemail.new_msg&msg_number=$msg_number&msg_folder=$msg_folder&type=forward");
234                        if (!empty($msg['attachments']))
235                        {
236                                $attachs = "<br>".lang("This message has the follow attachments:")."<br>";
237                                foreach($msg['attachments'] as $key => $attach) {
238                                        if(is_array($attach)) {
239                                                //$attachs.=$attach['name']."&nbsp;&nbsp;&nbsp;&nbsp;";
240                                                $attachs.="<a href='../expressoMail1_2/inc/gotodownload.php?msg_folder=".$msg_folder.
241                                                                  "&msg_number=".$msg_number."&idx_file=".$key."&msg_part=".$attach['pid'].
242                                                                  "&newfilename=".$attach['name']."&encoding=".$attach['encoding']."'>".
243                                                                          lang('Download').":&nbsp;".$attach['name']."</a><br>";
244                                        }
245                                }
246                                $this->template->set_var('attachment_message', $attachs);
247                        }
248                        else
249                        {
250                                $this->template->set_var('attachment_message', lang('This message don\'t have attachment(s)'));
251                        }
252
253                        $this->template->parse('view_msg_t', 'end_anchor');
254                        $this->template->parse('view_msg_t', 'begin_anchor');
255                       
256                        $GLOBALS['phpgw_info']['mobiletemplate']->set_error_msg($params["error_message"]);
257                        $GLOBALS['phpgw_info']['mobiletemplate']->set_content($this->template->fp('out', 'page'));
258                }
259
260                /*
261                 * @function index
262                 * @abstract Página inicial da aplicação mobilemail, mantém o estado atual. Ou seja, mostra lista de e-mails
263                 * do folder e página definidos pelos parâmetros current_folder e current_page.
264                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
265                 */
266                 // TODO: Talvez seja melhor voltar sempre para o Inbox e primeira página
267                function index($params)
268                {
269                        $GLOBALS['phpgw_info']['mobiletemplate']->set_error_msg($params["error_message"]);
270                        $GLOBALS['phpgw_info']['mobiletemplate']->set_success_msg($params["success_message"]);
271                        $this->mail_list();
272                        $this->save_session();
273
274                }
275               
276                function load_session(){
277                        /************************************\
278                         * Inicialização do expressoMail1_2 *
279                        \************************************/
280                        // Get Data from ldap_manager and emailadmin.
281                        $ldap_manager = CreateObject('contactcenter.bo_ldap_manager');
282                        $boemailadmin   = CreateObject('emailadmin.bo');
283                        $emailadmin_profile = $boemailadmin->getProfileList();
284                        $_SESSION['phpgw_info']['expressomail']['email_server'] = $boemailadmin->getProfile($emailadmin_profile[0]['profileID']);
285                        $_SESSION['phpgw_info']['expressomail']['user'] = $GLOBALS['phpgw_info']['user'];
286                        $_SESSION['phpgw_info']['expressomail']['server'] = $GLOBALS['phpgw_info']['server'];
287                        $_SESSION['phpgw_info']['expressomail']['ldap_server'] = $ldap_manager ? $ldap_manager->srcs[1] : null;
288                        $_SESSION['phpgw_info']['expressomail']['user']['email'] = $GLOBALS['phpgw']->preferences->values['email'];
289               
290                        // Fix problem with cyrus delimiter changes in preferences.
291                        // Dots in names: enabled/disabled.
292                        $save_in_folder = @eregi_replace("INBOX/", "INBOX".$_SESSION['phpgw_info']['expressomail']['email_server']['imapDelimiter'], $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['save_in_folder']);
293                        $save_in_folder = @eregi_replace("INBOX.", "INBOX".$_SESSION['phpgw_info']['expressomail']['email_server']['imapDelimiter'], $save_in_folder);
294                        $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['save_in_folder'] = $save_in_folder;
295                        // End Fix.
296               
297                    // Loading Admin Config Module
298                    $c = CreateObject('phpgwapi.config','expressoMail1_2');
299                    $c->read_repository();
300                    $current_config = $c->config_data;
301                    $_SESSION['phpgw_info']['server']['expressomail']['expressoMail_enable_log_messages'] = $current_config['expressoMail_enable_log_messages'];
302                    // Begin Set Anti-Spam options.
303                    $_SESSION['phpgw_info']['server']['expressomail']['expressoMail_command_for_ham'] = $current_config['expressoMail_command_for_ham'];
304                    $_SESSION['phpgw_info']['server']['expressomail']['expressoMail_command_for_spam'] = $current_config['expressoMail_command_for_spam'];
305                    $_SESSION['phpgw_info']['server']['expressomail']['expressoMail_use_spam_filter'] = $current_config['expressoMail_use_spam_filter'];
306
307                        // echo '<script> var array_lang = new Array();var use_spam_filter = \''.$current_config['expressoMail_use_spam_filter'].'\' </script>';
308
309                        // End Set Anti-Spam options.
310               
311                    // Set Imap Folder names options
312                    $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultTrashFolder']   = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultTrashFolder']     ? $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultTrashFolder']             : "Trash";
313                    $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultDraftsFolder']  = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultDraftsFolder'] ? $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultDraftsFolder']       : "Drafts";
314                    $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSpamFolder']    = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSpamFolder']      ? $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSpamFolder']              : "Spam";
315                    $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSentFolder']    = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSentFolder']      ? $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSentFolder']              : "Sent";
316
317                        // include("../expressoMail1_2/inc/load_lang.php");                 
318                }
319
320                /*
321                 * @function print_folder_selection
322                 * @abstract Imprime o folder corrente (INBOX)
323                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
324                 */
325                function print_folder_selection()
326                {
327                        $this->template->set_file(array('mobilemail_t' => 'mobilemail.tpl'));
328                        $this->template->set_block('mobilemail_t', 'inbox_folder_list');
329                        $this->template->set_var('lang_folder', lang('Folder'));
330                        $folder = str_replace("*","",lang($this->folders[$this->current_folder]['folder_name']));
331                        if(!$this->current_folder == 0){
332                                $this->template->set_var('lang_inbox', $folder.' :: <a title="'.lang('Inbox').'" href="index.php?menuaction=mobile.ui_mobilemail.mail_list&folder=0">'.lang('Inbox').'</a>');
333                        }else{
334                                $this->template->set_var('lang_inbox', lang('Inbox'));
335                        }
336                       
337                        //$this->template->set_var('folder_items', $folder_items);
338                        $this->template->parse('mobilemail_t', 'inbox_folder_list');                   
339                        //$this->template->fpf('out', 'mobilemail_t');
340                        $GLOBALS['phpgw_info']['mobiletemplate']->set_content($this->template->fp('out', 'mobilemail_t'));
341
342                }
343
344                /*
345                 * @function old_print_folder_selection
346                 * @abstract Imprime na tela a caixa de seleção de folders
347                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
348                 */
349                function old_print_folder_selection()
350                {
351
352                        // Processa as options
353                        $folder_items = '';
354
355                        foreach ($this->folders as $i => $j)
356                        {
357
358                                $option_selected = '';
359                                $this->template->set_file(array('mobilemail_t' => 'mobilemail.tpl'));
360                                $this->template->set_block('mobilemail_t', 'folder_item');
361
362                                if (is_numeric($i))
363                                {
364                                        if ($i == $this->current_folder)
365                                        {
366                                                 $option_selected = 'selected="selected"';
367                                        }
368
369                                        $this->template->set_var('option_selected', $option_selected);
370                                        $this->template->set_var('folder_id', $j['folder_id']);
371                                        $this->template->set_var('folder_name', $j['folder_id']); // Mudar... provavelmente usar preg_replace
372                                                                                                                                 // para substituir cpf pelo nome do usuário.
373
374                                        if ($j['folder_unseen'] > 0)
375                                        {
376                                                $this->template->set_var('folder_unseen', ' - ('.$j['folder_unseen'].')');
377                                        }
378
379                                        $folder_items .= $this->template->fp('mobile_t', 'folder_item');
380                                }
381
382                        }
383
384                        // Processa o select
385                        $this->template->set_file(array('mobilemail_t' => 'mobilemail.tpl'));
386                        $this->template->set_block('mobilemail_t', 'folder_list');
387                        $this->template->set_var('folder_items', $folder_items);
388                        $this->template->parse('mobilemail_t', 'folder_list');                 
389                        //$this->template->pfp('out', 'mobilemail_t');
390                        $GLOBALS['phpgw_info']['mobiletemplate']->set_content($this->template->fp('out', 'mobilemail_t'));
391
392                }
393
394                /*
395                 * @function mail_list
396                 * @abstract Imprime a lista de e-mails
397                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
398                 */
399                function mail_list()
400                {       
401                               
402                        $p = CreateObject('phpgwapi.Template', PHPGW_SERVER_ROOT . '/mobile/templates/'.$GLOBALS['phpgw_info']['server']['template_set']);
403                        $p->set_file(
404                                Array(
405                                        'mail_t' => 'mobilemail.tpl'
406                                )
407                        );
408                        $p->set_var("page",$this->current_page+1);
409                        $p->set_var("lang_new_message",lang("new message"));
410                        $p->set_var("lang_new",strtoupper(lang("new")));
411                        $p->set_var("folder_id",$this->folders[$this->current_folder]['folder_id']);
412                        $p->set_var("folder",$this->folders[$this->current_folder]['folder_name']);
413                        $p->set_var("selected_".$this->current_search_box_type,"selected");
414                        $p->set_var("lang_back",lang("back"));
415                        $p->set_var("lang_new_message",lang("new message"));
416                        $p->set_var("lang_search_message",lang("search message"));
417                        $p->set_var("lang_more",lang("more"));
418                        $p->set_var("lang_messages",lang("messages"));
419                       
420                        $max_per_page =
421                                        isset($GLOBALS['phpgw_info']['user']['preferences']['mobile']['max_message_per_page'])?
422                                        $GLOBALS['phpgw_info']['user']['preferences']['mobile']['max_message_per_page']:10;
423                                               
424                        $params = array(
425                                'folder'                        => $this->folders[$this->current_folder]['folder_id'],
426                                'msg_range_begin'       => 1,
427                                'msg_range_end'         => $this->current_page * $max_per_page,
428                                'search_box_type'       => $this->current_search_box_type,
429                                'sort_box_type'         => 'SORTARRIVAL',
430                                'sort_box_reverse'      => 1
431                        );
432                       
433                        $messages = $this->imap_functions->get_range_msgs2($params);
434                        if($params['msg_range_end']<$messages[num_msgs])
435                                $p->set_var("show_more","block");
436                        else
437                                $p->set_var("show_more","none");
438                        $this->number_of_messages = $messages[num_msgs];
439                       
440                        unset($messages["offsetToGMT"]);
441                        unset($messages["tot_unseen"]);
442                       
443                        $p->set_var('mails',$this->print_mails_list($messages,true));
444                       
445                        $GLOBALS['phpgw_info']['mobiletemplate']->set_content($p->fp('out','mail_t'));
446                       
447
448                }
449
450                /*
451                 * @function print_mails_list
452                 * @abstract Imprime a lista de mensagens
453                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
454                 * @param array Um array com a lista de mensagens recuperado por $this->imap_functions->get_range_msgs2($params)
455                 */
456                function print_mails_list($messages,$print_checkbox=false)
457                {
458                       
459                        $functions = CreateObject('mobile.common_functions');
460                        $p = CreateObject('phpgwapi.Template', PHPGW_SERVER_ROOT . '/mobile/templates/'.$GLOBALS['phpgw_info']['server']['template_set']);
461                                        $p->set_file(
462                                                Array(
463                                                        'mobilemail_t' => 'mails_list.tpl'
464                                                )
465                                        );
466                        $p->set_block('mobilemail_t', 'rows_mails');
467                        $p->set_block('mobilemail_t', 'row_mails');
468                        $p->set_block('mobilemail_t', 'no_messages');
469
470                        if(count($messages)>1) { //O array de emails tem pelo menos uma posição com o total de mensagens.
471                                $bg = "par";
472                                foreach($messages as $id => $message) {
473                                       
474                                        if(($id==='num_msgs') ||($id==='total_msgs'))
475                                                continue;
476                                        if($message['from']['name'])
477                                                $from_name = $message['from']['name'];
478                                        else
479                                                $from_name = $message['from']['email'];
480                                       
481                                        $p->set_var('bg',$bg=="par"?$bg="reset-dt":$bg="par");
482                                       
483                                        $flag=" ";
484                                                                               
485                                        if($message["Unseen"]!=="U")
486                                                $flag="seen ";
487                                       
488                                        if($message["Flagged"]==="F")
489                                                $flag.="important";
490                                       
491                                        $p->set_var("flag",$flag);
492                                        if($print_checkbox)
493                                                $p->set_var('show_check','inline');
494                                        else
495                                                $p->set_var('show_check','none');
496                                       
497                                        $p->set_var('pre_type',$pre);
498                                        $p->set_var('pos_type',$pos);
499                                        $p->set_var('from',$from_name);
500                                        $p->set_var('msg_number',$message["msg_number"]);
501                                        $p->set_var('mail_time',$message['smalldate']);
502                                        $p->set_var('mail_from',$functions->strach_string($message['from']['email'],23));
503                                        $p->set_var('subject',$functions->strach_string($message['subject'],25));
504                                        $p->set_var('size',$functions->borkb($message['Size']));
505                                        $p->set_var('lang_attachment',lang('ATTACHMENT'));
506                                        $p->set_var('msg_number', $message['msg_number']);
507                                        $p->set_var('msg_folder', isset($message['msg_folder'])?
508                                                                        $message['msg_folder']:$this->folders[$this->current_folder]['folder_id']);
509                                        if($message['attachment']['number_attachments']>0) {
510                                                $p->set_var('show_attach','inline');
511                                                $p->set_var('no_attach_space','none');
512                                        }
513                                        else {
514                                                $p->set_var('show_attach','none');
515                                                $p->set_var('no_attach_space','block');
516                                        }
517                                               
518                                        $p->fp('rows','row_mails',True);
519                                }
520                        }
521                        else {
522                                $p->set_var("lang_no_results",lang("no results found"));
523                                $p->parse("rows","no_messages");
524                        }
525                        return $p->fp('out','rows_mails');
526/*
527                        // Cria a lista de e-mails
528                        $mail_rows = '';
529      $unread_msg_count = 0;
530     
531                        if ($this->number_of_messages != 0)
532                        {
533                                $unread_msg_count = 0;
534                                foreach ($messages as $index => $msg)
535                                {
536                                  $p = CreateObject('phpgwapi.Template', PHPGW_SERVER_ROOT . '/mobile/templates/'.$GLOBALS['phpgw_info']['server']['template_set']);
537                                        $p->set_file(array('mobilemail_t' => 'mobilemail.tpl'));
538                                        $p->set_block('mobilemail_t', 'mail_row');
539                                        $p->set_block('mobilemail_t', 'end_strong');
540                                        $p->set_block('mobilemail_t', 'begin_strong');
541                                        $p->set_var('unseen_bkg', "seen_bkg");
542                                        $p->set_var('itememail_access_key', "0");
543                                        $p->set_var('str_new_message', "");
544
545                                        if (is_numeric($index))
546                                        {
547                                                !empty($msg['from']['name']) ? $from = $msg['from']['name'] : $from = $msg['from']['email'];
548                                                !empty($msg['subject']) ? $subject = $msg['subject'] : $subject = lang('[empty subject]');
549                                                if ($msg['Unseen'] == 'U')
550                                                { //Setando as mensagens nao lidas
551                                                        $p->set_var('strong_unseen_begin', trim($p->fp('mobilemail_t', 'begin_strong')));
552                                                        $p->set_var('strong_unseen_end', trim($p->fp('mobilemail_t', 'end_strong')));
553                                                        $p->set_var('unseen_bkg', "unseen_bkg");
554                                                        $p->set_var('itememail_access_key', "9");
555                                                        $unread_msg_count = $unread_msg_count + 1;
556                                                        $p->set_var('str_new_message', lang("New message"));
557                                                }
558                                                $p->set_var('from', $from);
559                                                $p->set_var('subject', $subject);
560                                                $p->set_var('msg_number', $msg['msg_number']);
561                                                $p->set_var('date', $msg['smalldate']);
562                                                $p->set_var('msg_folder', $this->folders[$this->current_folder]['folder_id']);
563                                                $p->set_var('from_label', lang('From'));
564                                                $mail_rows .= $p->fp('mobilemail_t', 'mail_row');
565                                        }
566                                }
567   
568                                // Imprime a lista de e-mails
569                                $p = CreateObject('phpgwapi.Template', PHPGW_SERVER_ROOT . '/mobile/templates/'.$GLOBALS['phpgw_info']['server']['template_set']);
570                                $p->set_file(array('mobilemail_t' => 'mobilemail.tpl'));
571                                $p->set_block('mobilemail_t', 'mail_list');
572                                $p->set_var('mail_rows', $mail_rows);
573                                $p->set_var('messages_total', $this->number_of_messages);
574                                $p->set_var('unread_messages_total', $unread_msg_count);
575                                if ($unread_msg_count)
576                                {
577                                        $p->set_var('(unread_messages_total)', '('.$unread_msg_count.')');
578                                }
579                               
580                                //$p->pfp('out', 'mail_list');
581                                $GLOBALS['phpgw_info']['mobiletemplate']->set_content($p->fp('out', 'mail_list'));
582                        }
583                        else
584                        {
585                                // Lista de e-mails vazia
586                                $p = CreateObject('phpgwapi.Template', PHPGW_SERVER_ROOT . '/mobile/templates/'.$GLOBALS['phpgw_info']['server']['template_set']);
587                                $p->set_file(array('mobilemail_t' => 'mobilemail.tpl'));
588                                $p->set_block('mobilemail_t', 'empty_list');
589                                $p->set_var('empty_message', lang('Empty folder'));                             
590                                //$p->pfp('out', 'empty_list');
591                                $GLOBALS['phpgw_info']['mobiletemplate']->set_content($p->fp('out', 'empty_list'));
592                        }*/
593                }
594
595                /*
596                 * @funtion print_page_navigation
597                 * @abstract Imprime a barra de navegação da lista de e-mails da pasta corrente. Quem chama essa função é quem faz o controle do modelo.
598                 * @author Mário César Kolling <mario.kolling@serpro.gov.br>
599                 * @param integer Número de páginas que serão geradas
600                 * @param integer Página corrente
601                 */
602                // TODO: mover este método para a classe page_navigation subclasse de widget
603                function print_page_navigation($number_of_pages, $page = 1)
604                {
605
606                        $pages = '';
607
608                        if ($number_of_pages != 0)
609                        {
610                                // Geração das páginas
611                                for ($i = 1; $i <= $number_of_pages ; $i++)
612                                {
613
614          $p = CreateObject('phpgwapi.Template', PHPGW_SERVER_ROOT . '/mobile/templates/'.$GLOBALS['phpgw_info']['server']['template_set']);
615                                        $p->set_file(array('mobilemail_t' => 'mobilemail.tpl'));
616                                        $p->set_block('mobilemail_t', 'space');
617                                        $p->set_block('mobilemail_t', 'begin_anchor');
618                                        $p->set_block('mobilemail_t', 'end_anchor');
619                                        $p->set_block('mobilemail_t', 'page_item');
620                                        $p->set_block('mobilemail_t', 'begin_strong');
621                                        $p->set_block('mobilemail_t', 'end_strong');
622
623                                        if ($i == $page)
624                                        {
625                                                // Se for a página sendo gerada for a página corrente,
626                                                // não gera a âncora e destaca o número (negrito)
627                                                $p->set_var('end_anchor', '');
628                                                $p->set_var('begin_anchor', '');
629                                                $p->set_var('begin_strong', trim($p->fp('mobilemail_t', 'begin_strong')));
630                                                $p->set_var('end_strong', trim($p->fp('mobilemail_t', 'end_strong')));
631                                        }
632                                        else
633                                        {
634                                                // Senão, gera a âncora
635                                                $p->set_var('begin_strong', '');
636                                                $p->set_var('end_strong', '');
637                                                $p->set_var('end_anchor', trim($p->fp('mobilemail_t', 'end_anchor')));
638                                                $p->set_var('begin_anchor_href', "index.php?menuaction=mobile.ui_mobilemail.change_page&folder=$this->current_folder&page=$i");
639                                                $p->set_var('begin_anchor', trim($p->fp('mobilemail_t', 'begin_anchor')));
640                                        }
641
642                                        $p->set_var('page', $i);
643                                        //$pages .= trim($p->fp('mobilemail_t', 'page_item'));
644
645                                }
646                                $pages .= " ".$page." ".lang("of")." ".$number_of_pages." ";
647
648                                // Geração dos links "anterior" e "próximo"
649                                $p = CreateObject('phpgwapi.Template', PHPGW_SERVER_ROOT . '/mobile/templates/'.$GLOBALS['phpgw_info']['server']['template_set']);
650                                $p->set_file(array('mobilemail_t' => 'mobilemail.tpl'));
651
652                                //$p->set_block('mobilemail_t', 'space');
653                                $p->set_block('mobilemail_t', 'mail_footer');
654                                $p->set_block('mobilemail_t', 'previous');
655                                $p->set_block('mobilemail_t', 'next');
656
657                                $next_page = $page + 1;
658                                $previous_page = $page - 1;
659
660                                if ($page == 1)
661                                {
662                                        // Se for a primeira página, não imprime o link "anterior""
663                                        $p->set_var('previous', '');
664                                        if ($page == $number_of_pages)
665                                        {
666                                                // Se só existir uma página, não imprime o link "próximo"
667                                                $p->set_var('next', '');
668                                        }
669                                        else
670                                        {
671                                                $p->set_var('next_href', "index.php?menuaction=mobile.ui_mobilemail.change_page&folder=$this->current_folder&page=$next_page");
672                                                $p->set_var('next', trim($p->fp('mobilemail_t', 'next')));
673                                        }
674
675                                }
676                                else if ($page == $number_of_pages)
677                                {
678                                        // Se for a última página, não imprime o link "próximo"
679                                        $p->set_var('next', '');
680                                        $p->set_var('previous_href', "index.php?menuaction=mobile.ui_mobilemail.change_page&folder=$this->current_folder&page=$previous_page");
681                                        $p->set_var('previous', trim($p->fp('mobilemail_t', 'previous')));
682                                }
683                                else
684                                {
685                                        // Senão, imprime os links "anterior" e "próximo"
686                                        $p->set_var('previous_href', "index.php?menuaction=mobile.ui_mobilemail.change_page&folder=$this->current_folder&page=$previous_page");
687                                        $p->set_var('previous', trim($p->fp('mobilemail_t', 'previous')));
688
689                                        $p->set_var('next_href', "index.php?menuaction=mobile.ui_mobilemail.change_page&folder=$this->current_folder&page=$next_page");
690                                        $p->set_var('next', trim($p->fp('mobilemail_t', 'next')));
691                                }
692
693                                $p->set_var('pages', $pages);
694                                //$p->pfp('out', 'mail_footer');
695                                $GLOBALS['phpgw_info']['mobiletemplate']->set_content($p->fp('out', 'mail_footer'));
696                        }
697
698                }
699
700                function define_action_message($type) {
701                        switch($type) {
702                                case "clk":
703                                case "from_mobilecc":
704                                        $this->template->set_var('action_msg', lang("New message"));
705                                        break;
706                                case "reply_all":
707                                        $this->template->set_var('action_msg', lang("Reply to All"));
708                                        break;
709                                case "forward":
710                                        $this->template->set_var('action_msg', lang("Forward"));
711                                        break;                                         
712                        }
713                }
714               
715                /*
716                 * @function new_msg()
717                 * @abstract Gera o formulário para criar/enviar novo e-mail ou resposta de e-mail.
718                 * @author Rommel de Brito Cysne <rommel.cysne@serpro.gov.br>
719                 */
720                function new_msg($params)
721                {
722                        $this->template->set_file(array('new_msg_t' => 'new_msg.tpl'));
723                        $this->template->set_block('new_msg_t', 'page');
724                        $this->template->set_block('new_msg_t', 'add_recipient_block');
725                        $this->template->set_var('lang_back', lang("back"));
726                        $this->template->set_var('lang_calendar', strtoupper(lang("Calendar")));
727                        $this->template->set_var('lang_send', strtoupper(lang("Send")));
728                        $this->template->set_var('lang_attachment', strtoupper(lang("attachment")));
729                        $this->template->set_var('lang_cancel', strtoupper(lang("cancel")));
730                        $this->template->set_var('lang_save_draft', strtoupper(lang("save draft")));
731                        $this->template->set_var('lang_to', lang("To"));
732                        $this->template->set_var('lang_cc', lang("cc"));
733                        $this->template->set_var('lang_subject', lang("Subject"));
734                        $this->template->set_var('lang_mark_as_important', lang("mark as important"));
735                        $this->template->set_var('lang_read_confirmation', lang("read confirmation"));
736                        $this->template->set_var('lang_add_history', lang("add history"));
737                       
738                        $this->template->parse('add_recipient_box', 'add_recipient_block', true);
739                       
740                        if(isset($params["error_message"])) {
741                                $this->template->set_var('input_to', $_POST['input_to']);
742                                $this->template->set_var('input_cc', $_POST['input_cc']);
743                                $this->template->set_var('subject', $_POST['input_subject']);
744                                $this->template->set_var('msg_number', $_POST['msg_number']);
745                                $this->template->set_var('msg_folder', $_POST['msg_folder']);
746                                $this->template->set_var('body_value', $_POST['body']);
747                                $this->template->set_var('msg_folder', $_POST['folder']);
748                                $this->template->set_var('msg_number', $_POST['reply_msg_number']);
749                                $this->template->set_var('from', $_POST['reply_from']);
750                                $this->template->set_var('check_important', ( ( $_POST['check_important'] ) ? "checked" : "" ) );
751                                $this->template->set_var('check_read_confirmation', ( ( $_POST['check_read_confirmation'] )  ? "checked" : "" ) );
752                                $this->template->set_var('check_add_history', ( ( $_POST['check_add_history'] )  ? "checked" : "" ) );
753                               
754                                $GLOBALS['phpgw_info']['mobiletemplate']->set_error_msg($params["error_message"]);
755                        } else {
756                                if (isset($params['msg_number'])) $msg = $this->imap_functions->get_info_msg(array('msg_number' => $params['msg_number'] ) );
757                               
758                                if($params['type']=="clk")
759                                {
760                                        $this->template->set_var('input_to', "");
761                                        $this->template->set_var('input_cc', "");
762                                        $this->template->set_var('subject', "");
763                                }
764                                else if($params['type']=="from_mobilecc")
765                                {
766                                        $this->template->set_var('input_to', $_GET['input_to']);
767                                        $this->template->set_var('input_cc', $_GET['input_cc']);
768                                }
769                                else if($params['type']=="reply_all"){
770                                        $reply_to_all = $msg['from']['email'];
771                                        if($msg['toaddress2']) $reply_to_all .= ','.$msg['toaddress2'];
772                                        if($msg['cc']) $reply_to_all .= ','.$msg['cc'];
773                                        if($msg['bcc']) $reply_to_all .= ','.$msg['bcc'];                                                                                               
774                                       
775                                        $array_emails = explode(',',$reply_to_all);
776                                        $reply_to_all = '';
777                                       
778                                        foreach ($array_emails as $index => $email) {
779                                                $flag = preg_match('/&lt;(.*?)&gt;/',$email,$reply);
780                                                $email_to_add = $flag == 0 ? $email.',' : $reply[1].',';
781                                               
782                                                if( strpos($reply_to_all, $email_to_add) === false)
783                                                        $reply_to_all .= $email_to_add;
784                                        }
785                                       
786                                        $reply_to_all = substr_replace($reply_to_all, "", strrpos($reply_to_all, ","), strlen($reply_to_all));
787                                       
788                                        $this->template->set_var('input_to', $reply_to_all);
789                                        $this->template->set_var('subject', "Re:" . $msg['subject']);
790       
791                                        $this->template->set_var('msg_number', $_GET['msg_number']);
792                                        $this->template->set_var('msg_folder', $_GET['msg_folder']);
793                                }
794                                else if($params['type']=="user_add"){
795                                        $this->template->set_var('input_to', $params['mobile_add_contact']['mobile_mail']);
796                                        $this->template->set_var('input_cc', $params['mobile_add_contact']['mobile_mail_cc']);                                 
797                                        $this->template->set_var('subject', $params['mobile_add_contact']['subject_mail']);
798                                        $this->template->set_var('body_value', $params['mobile_add_contact']['body_mail']);
799       
800                                        $this->template->set_var('check_important', ( ( $params['mobile_add_contact']['check_important'] ) ? "checked" : "" ) );
801                                        $this->template->set_var('check_read_confirmation', ( ( $params['mobile_add_contact']['check_read_confirmation'] )  ? "checked" : "" ) );
802                                        $this->template->set_var('check_add_history', ( ( $params['mobile_add_contact']['check_add_history'] )  ? "checked" : "" ) );
803                                        $this->template->set_var('msg_number', $params['msg_number']);
804                                        $this->template->set_var('msg_folder', $params['msg_folder']);
805                                       
806                                        $params["type"] = $params['mobile_add_contact']['type'];               
807                                }
808                                else if($params['type']=="forward"){
809                                        $this->template->set_var('from', $msg['toaddress2']);
810       
811                                        $this->template->set_var('subject', "Enc:" . $msg['subject']);
812                                        $this->template->set_var('body_value', strip_tags($msg['body'])); // Usa a função strip_tags() para filtrar
813                                        // as tags que estão presentes no corpo do e-mail.
814                                       
815                                        $this->template->set_var('msg_number', $_GET['msg_number']);
816                                        $this->template->set_var('msg_folder', $_GET['msg_folder']);           
817                                }
818                                else{
819                                        $this->template->set_var('from', $msg['toaddress2']);
820                                        $this->template->set_var('input_to', $msg['from']['email']);
821       
822                                        $this->template->set_var('subject', "Re:" . $msg['subject']);
823       
824                                        $this->template->set_var('msg_number', $_GET['msg_number']);
825                                        $this->template->set_var('msg_folder', $_GET['msg_folder']);
826       
827                                        $this->template->set_var('read_only', "readonly");
828                                }                               
829                        }
830                       
831                        //tem que ser realizado no final, pois o tipo user_add é modificado para o tipo que o originou
832                        $this->template->set_var('type', $params['type']);
833                        $this->define_action_message($params['type']);
834                       
835                        unset($_SESSION['mobile_add_contact']);
836                        $GLOBALS['phpgw_info']['mobiletemplate']->set_content($this->template->fp('out', 'page'));
837                }
838
839                                /*
840                 * @function save_draft()
841                 * @abstract Função que salva o email como rascunho
842                 * @author Thiago Antonius
843                 */
844                function save_draft($params)
845                {
846                        $params["folder"] = "INBOX/".$_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultDraftsFolder'];
847                        $return = $this->imap_functions->save_msg($params);
848                        if($return["has_error"]) {
849                                $params["error_message"] = lang("draft not save")."<br>".lang("error") . $return["append"];
850                                $this->new_msg( $params );
851                        }else {
852                                header('Location: index.php?menuaction=menuaction=mobile.ui_home.index&success_message='.lang("draft saved"));
853                        }                               
854                }
855               
856                /*
857                 * @function send_mail()
858                 * @abstract Função que realiza o envio de e-mails.
859                 * @author Rommel de Brito Cysne <rommel.cysne@serpro.gov.br>
860                 */
861                function send_mail()
862                {
863                        //Chamada da classe phpmailer
864                        include_once(PHPGW_SERVER_ROOT."/expressoMail1_2/inc/class.phpmailer.php");
865
866                        //Recebe os dados do form (passados pelo POST)
867                        $userMail = $_POST['input_to'];
868                        $ccUserMail = $_POST['input_cc'];
869                        $subject = $_POST['input_subject']; //"Mail Subject";
870                        $body = $_POST['body']; //"Mail body. Any text.";
871                        $isImportant = $_POST['check_important'];
872                        $addHistory = $_POST['check_add_history'];
873                        $readConfirmation = $_POST['check_read_confirmation'];
874                        $msgNumber = $_POST['reply_msg_number'];
875
876                        //Cria objeto
877                        $mail = new PHPMailer();
878
879                        if(!$this->imap_functions->add_recipients("to", $userMail, &$mail))
880                        {
881                                $error_msg = lang("Some addresses in the To field were not recognized. Please make sure that all addresses are properly formed");
882                        }
883                       
884                        if(!$this->imap_functions->add_recipients("cc", $ccUserMail, &$mail))
885                        {
886                                $error_msg = lang("Some addresses in the CC field were not recognized. Please make sure that all addresses are properly formed");
887                        }                       
888
889                        $mail->IsSMTP();
890                        $mail->Host = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpServer'];
891                        $mail->Port = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpPort'];
892
893                        $mail->SaveMessageInFolder = $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['save_in_folder'];
894                        //Envia os emails em formato HTML; se false -> desativa.
895                        $mail->IsHTML(true);
896                        //Email do remetente da mensagem
897                        $mail->Sender = $mail->From = $_SESSION['phpgw_info']['expressomail']['user']['email'];
898                        //Nome do remetente do email
899                        $mail->SenderName = $mail->FromName = $_SESSION['phpgw_info']['expressomail']['user']['fullname'];
900                        //Assunto da mensagem
901                        $mail->Subject = $subject;
902                        //Corpo da mensagem
903                        $mail->Body .= "<br />$body<br />";
904                        //Important message
905                        if($isImportant) $mail->isImportant();
906                        //add history
907                        if($addHistory && $msgNumber) {
908                                $msg = $this->imap_functions->get_info_msg(array('msg_number' => $msgNumber ) );
909                                $mail->Body .= "<br />".$msg['body']."<br />";                                         
910                        }
911                        //read confirmation
912                        if ($readConfirmation) $mail->ConfirmReadingTo = $_SESSION['phpgw_info']['expressomail']['user']['email'];
913
914                        //Se o e-mail nao for enviado por qualquer motivo...
915                        if(!$mail->Send()) {
916                                $params["error_message"] = lang("Message not sent")."<br>".lang("error") . $mail->ErrorInfo;
917                                $this->new_msg( $params );
918                        }else {
919                                header('Location: index.php?menuaction=menuaction=mobile.ui_home.index&success_message='.lang("Message sent successfully"));
920                        }
921                }
922
923                function confirm_delete_msg()
924                {                                       
925                        //Cria um objeto template
926                        //Define o template para mensagens de retorno da funcao
927                        $this->template->set_file(array('delete_msg_t' => 'delete_msg.tpl'));
928                        $this->template->set_block('delete_msg_t','retorno');                   
929                        $this->template->set_var('lang_delete_msg', lang("Do you like to delete this message?"));                               
930                        $this->template->set_var('lang_yes', lang("Yes"));     
931                        $this->template->set_var('lang_no', lang("No"));
932                        $this->template->set_var('link_yes', 'index.php?menuaction=mobile.ui_mobilemail.delete_msg&msg_number='.$_GET['msg_number'].'&msg_folder='.$_GET['msg_folder']);
933                        $this->template->set_var('link_no', 'index.php?menuaction=mobile.ui_mobilemail.show_msg&amp;msg_number='.$_GET['msg_number'].'&amp;msg_folder='.$_GET['msg_folder']);   
934                       
935                        $this->template->pfp('out','retorno'); 
936                }
937
938                function delete_msg($params)
939                {
940
941                        if (isset($params['msgs']))
942                        {
943                                $params_messages = array(
944                                        'msgs_number' => implode(",",$params['msgs']),
945                                        'folder' => $this->folders[$this->current_folder]['folder_name'],
946                                        'new_folder_name' => 'Trash',
947                                        'new_folder' => 'INBOX/Trash'
948                                );
949                        }       
950                        $this->imap_functions->move_messages($params_messages);
951
952                        header("Location: index.php?menuaction=mobile.ui_mobilemail.index&success_message=".lang("The messages were moved to trash"));
953                   
954                }
955               
956                function get_folder_number($folder_name){
957                        foreach($this->folders as $folderNumber => $folder){
958                                if($folder['folder_id'] == $folder_name){
959                                        return $folderNumber;
960                                }
961                        }
962                        return 0;
963                }
964               
965                function init_schedule() {
966                        $_SESSION['mobile_add_contact'] = array();
967                        $_SESSION['mobile_add_contact']['mobile_mail']  = $_POST['input_to'];
968                        $_SESSION['mobile_add_contact']['mobile_mail_cc'] = $_POST['input_cc'];
969                        $_SESSION['mobile_add_contact']['add_to'] = $_POST['add_to'];
970                        $_SESSION['mobile_add_contact']['type'] = $_POST['type'];
971                        $_SESSION['mobile_add_contact']['msg_number'] = $_POST['reply_msg_number'];
972                        $_SESSION['mobile_add_contact']['msg_folder'] = $_POST['folder'];
973                        $_SESSION['mobile_add_contact']['subject_mail'] = $_POST['input_subject'];
974                        $_SESSION['mobile_add_contact']['body_mail'] = $_POST['body'];
975                        $_SESSION['mobile_add_contact']['check_important'] = $_POST['check_important'];
976                        $_SESSION['mobile_add_contact']['check_read_confirmation'] = $_POST['check_read_confirmation'];
977                        $_SESSION['mobile_add_contact']['check_add_history'] = $_POST['check_add_history'];
978
979                        $ui_cc = CreateObject('mobile.ui_mobilecc');
980                        $ui_cc->choose_contact(array("request_from" => "ui_mobilemail.new_msg"));
981                }
982               
983                function add_recipient() {
984                        if($_SESSION['mobile_add_contact']['add_to'] == "to")
985                                $arr_key_name = "mobile_mail";
986                        else
987                                $arr_key_name = "mobile_mail_cc";
988                       
989                        $arr_mobile_add_contact = $_SESSION['mobile_add_contact'];
990                       
991                        if(strpos($arr_mobile_add_contact[$arr_key_name], $_GET['mail']) === false)
992                                $arr_mobile_add_contact[$arr_key_name] .= ( (trim($arr_mobile_add_contact[$arr_key_name]) == "") ? $_GET['mail'] : ",".$_GET['mail']);
993                       
994                        unset($_SESSION['mobile_add_contact']);
995                       
996                        $this->new_msg( array(
997                                'mobile_add_contact' => $arr_mobile_add_contact,
998                                'type' => 'user_add',
999                                'msg_number' => $arr_mobile_add_contact['msg_number'],
1000                                'msg_folder' => $arr_mobile_add_contact['msg_folder']));
1001                }
1002               
1003                function list_folders(){                       
1004                        //Define o template para mensagens de retorno da funcao
1005                        $this->template->set_file(array('folders_t' => 'folders.tpl'));
1006                        $this->template->set_block('folders_t','retorno');
1007                       
1008                        $folders_list = '';
1009                        $array_folders = Array();
1010                        $this->folders = $this->imap_functions->get_folders_list(array('noSharedFolders' => true));             
1011                       
1012                        foreach($this->folders as $id => $folder)
1013                        {
1014                                if((strpos($folder['folder_id'],'user')===true && !is_array($folder)) || !is_numeric($id))
1015                                        continue;
1016                                        $array_folders[$folder['folder_id']]['id'] = $id;
1017                                        $array_folders[$folder['folder_id']]['folder_name'] = $folder['folder_name'];
1018                        }
1019                       
1020                        foreach($array_folders as $folder_id => $folder)
1021                        {
1022                                if(($folder_id != $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['save_in_folder']) && ($folder['id'] != 0)){
1023                                        $folder_name = str_replace('*','',lang($folder['folder_name']));
1024                                        $folder_link = "index.php?menuaction=mobile.ui_mobilemail.mail_list&folder=".$folder['id'];
1025                                        $folders_list .= "<br>:: <a href=".$folder_link.">".$folder_name."</a>";
1026                                }
1027                        }
1028                        $this->template->set_var('folders_list', $folders_list);
1029                        $this->template->pfp('out','retorno');                             
1030
1031                }
1032
1033        }
1034?>
Note: See TracBrowser for help on using the repository browser.