source: branches/2.2/mobile/mobile_header.inc.php @ 3492

Revision 3492, 2.3 KB checked in by rafaelraymundo, 13 years ago (diff)

Ticket #1390 - corrigindo o número do ticket no comentário da revisão [3491]

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        /*******************************************\
14         * Define a aplicação mobile preferencial  *
15        \*******************************************/
16        //TODO: Ler do banco do expresso as preferências do usuário e definir a aplicação móvel padrão
17        // por enquanto isto será hardcoded para mobilemail.
18
19        $GLOBALS['phpgw_info']['flags']['currentapp'] = 'mobile';
20        $GLOBALS['phpgw_info']['user']['preferences']['common']['default_mobile_app'] = 'mobilemail'; // mobilecalendar, mobilecc ou mobilemail
21
22        if ( is_null($GLOBALS['phpgw_info']['server']['template_set']) )
23                $GLOBALS['phpgw_info']['server']['template_set'] = $GLOBALS['phpgw_info']['login_template_set'];
24        if ( !file_exists( PHPGW_SERVER_ROOT . '/mobile/templates/'.$GLOBALS['phpgw_info']['server']['template_set'] ) )
25                $GLOBALS['phpgw_info']['server']['template_set'] = 'default';
26
27        /*
28         * @function start_prefered_app
29         * @abstract Função que chama a aplicação móvel preferencial.
30         * @author Mário César Kolling <mario.kolling@serpro.gov.br>
31         */
32        function start_prefered_app(){
33                //TODO: Determinar qual a aplicação móvel preferida e iniciá-la.                       
34                switch($GLOBALS['phpgw_info']['user']['preferences']['common']['default_mobile_app']){
35                        case mobilemail:
36                                $link = "ui_mobilemail.mail_list";             
37                                break;
38                        case mobilecalendar:
39                                $link = "ui_mobilecalendar.index";
40                                break;
41                        case mobilecc:
42                                $link = "ui_mobilecc.contacts_list";
43                                break;         
44                        default:
45                                break;         
46                }               
47                $GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link("index.php?menuaction=mobile.".$link));
48        }
49?>
Note: See TracBrowser for help on using the repository browser.