Changeset 4744 for branches


Ignore:
Timestamp:
07/14/11 15:18:41 (13 years ago)
Author:
alexandrecorreia
Message:

Ticket #2124 - Continua armazenando a senha e o nome do usuário e deixa o botão sair

Location:
branches/2.2/mobile
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/mobile/inc/class.mobiletemplate.inc.php

    r4694 r4744  
    1919                        if( $template == "mini_desktop" ) 
    2020                        { 
    21                                 $url_expresso = $GLOBALS['phpgw_info']['server']['webserver_url']; 
    22                                 $url_expresso = ( !empty($url_expresso) ) ? $url_expresso : '/'; 
    23                  
    24                                 if(strrpos($url_expresso,'/') === false || strrpos($url_expresso,'/') != (strlen($url_expresso)-1)) 
    25                                 { 
    26                                         $url_expresso .= '/'; 
    27                                 } 
    28  
    29                                 $url_expresso .= "index.php"; 
     21                                $url_expresso = $this->getUrlExpresso() . "index.php"; 
    3022                                 
    3123                                $this->template->set_file(array('home_t' => 'pc_template.tpl')); 
     
    144136                         
    145137                        $this->template->set_var('global_title', lang('expresso mini')); 
    146                         // button logout 
    147                         if( isset($_COOKIE['lem']) && isset($_COOKIE['pem']) ) 
    148                         { 
    149                                 $this->template->set_var('style_1','padding-left:65%;'); 
    150                                 $this->template->set_var('style_2','position:relative; float: right; display: none'); 
    151                         } 
    152                         else 
    153                         { 
    154                                 $this->template->set_var('style_1','position:absolute; float: left;'); 
    155                                 $this->template->set_var('style_2','position:relative; float: right; display: block'); 
    156                         } 
    157  
    158                         if( isset($_SESSION['mobile']['displayIOS']) && $_SESSION['mobile']['displayIOS'] == "true" ) 
    159                                 $this->template->set_var('display_IOS', "none"); 
    160                         else 
    161                                 $this->template->set_var('display_IOS', "block"); 
    162                                  
     138                        $this->template->set_var('style_1','position:absolute; float: left;'); 
     139                        $this->template->set_var('style_2','position:relative; float: right; display: block'); 
    163140                        $this->template->set_var('lang_tips', lang('Tips')); 
    164141                        $this->template->set_var('lang_logout', lang('logout')); 
    165142                        $this->template->set_var('lang_search', lang('search')); 
    166143                         
    167                         $this->template->set_var('href_logout', 'login.php?cd=1'); 
     144                        if( isset($_SESSION['mobile']['displayIOS']) && $_SESSION['mobile']['displayIOS'] == "true" ) 
     145                        { 
     146                                $this->template->set_var('display_IOS', "none"); 
     147                        } 
     148                        else 
     149                        { 
     150                                $this->template->set_var('display_IOS', "block"); 
     151                        } 
     152 
     153                        if( isset($_COOKIE['lem']) && isset($_COOKIE['pem']) ) 
     154                        { 
     155                                $this->template->set_var('href_logout', 'login.php?cd=logout_mobile'); 
     156                        } 
     157                        else 
     158                        { 
     159                                $this->template->set_var('href_logout', 'login.php?cd=1'); 
     160                        } 
    168161                } 
    169162                 
     
    260253                        return $url; 
    261254                } 
     255                 
     256                private function getUrlExpresso() 
     257                { 
     258                        $url_expresso = $GLOBALS['phpgw_info']['server']['webserver_url']; 
     259                        $url_expresso = ( !empty($url_expresso) ) ? $url_expresso : '/'; 
     260         
     261                        if(strrpos($url_expresso,'/') === false || strrpos($url_expresso,'/') != (strlen($url_expresso)-1)) 
     262                        { 
     263                                $url_expresso .= '/'; 
     264                        } 
     265 
     266                        return $url_expresso; 
     267                } 
    262268 
    263269                function get_back_link(){ 
  • branches/2.2/mobile/login.php

    r4695 r4744  
    1717        $GLOBALS['sessionid'] = @$_GET['sessionid'] ? $_GET['sessionid'] : @$_COOKIE['sessionid']; 
    1818         
    19         if(isset($GLOBALS['sessionid']) && $_GET['cd'] != 10 && $_GET['cd'] != 1) 
    20                 start_prefered_app(); 
     19        if( isset($GLOBALS['sessionid']) ) 
     20        { 
     21                if( $_GET['cd'] != 10 && $_GET['cd'] != 1 && $_GET['cd'] !== 'logout_mobile' ) 
     22                { 
     23                        start_prefered_app(); 
     24                } 
     25        } 
    2126                 
    2227        if ( $GLOBALS['phpgw_info']['server']['use_https'] > 0 ) 
     
    8388        function check_logoutcode($code) { 
    8489                switch($code) { 
     90                        case 'logout_mobile':  
    8591                        case 1: 
    8692                                logout(); 
     
    109115                                } 
    110116                                return lang('Your session could not be verified.'); 
     117                         
    111118                        default: 
    112119                                return ''; 
     
    123130        elseif(get_var('lem',array('GET','COOKIE')) && get_var('pem',array('GET','COOKIE'))) 
    124131        { 
    125                 if(!$_GET['cd'] || $_GET['cd'] == '1' || $_GET['cd'] == '10') {  
    126                         $submit = True; 
    127                         $login  = base64_decode(get_var('lem',array('GET','COOKIE'))); 
    128                         $passwd = base64_decode(get_var('pem',array('GET','COOKIE'))); 
    129                         $passwd_type = 'text'; 
    130                 } 
    131                 else { 
    132                         $GLOBALS['phpgw']->session->phpgw_setcookie('lem'); 
    133                         $GLOBALS['phpgw']->session->phpgw_setcookie('pem'); 
     132                if( $_GET['cd'] !== 'logout_mobile' ) 
     133                { 
     134                        if(!$_GET['cd'] || $_GET['cd'] == '1' || $_GET['cd'] == '10') 
     135                        {  
     136                                $submit = True; 
     137                                $login  = base64_decode(get_var('lem',array('GET','COOKIE'))); 
     138                                $passwd = base64_decode(get_var('pem',array('GET','COOKIE'))); 
     139                                $passwd_type = 'text'; 
     140                        } 
     141                        else 
     142                        { 
     143                                $GLOBALS['phpgw']->session->phpgw_setcookie('lem'); 
     144                                $GLOBALS['phpgw']->session->phpgw_setcookie('pem'); 
     145                        } 
    134146                } 
    135147        } 
  • branches/2.2/mobile/setup/phpgw_pt-br.lang

    r4051 r4744  
    6464This message don't have attachment(s)   mobile  pt-br   Este e-mail não possui anexo(s) 
    6565This message has the follow attachments:        mobile  pt-br   Esta mensagem possui anexo: 
     66Tips    mobile  pt-br   Dicas 
    6667Catalog mobile  pt-br   Catálogo 
    6768Phone   mobile  pt-br   Telefone 
  • branches/2.2/mobile/templates/default/template.tpl

    r4149 r4744  
    1313                        <div style="position:absolute; float:left; width:50%;"> 
    1414                                <div style="position:relative; float:left;"> 
    15                                         <h1 onclick="window.location='index.php?menuaction=mobile.ui_home.index'">{global_title}</h1> 
     15                                        <h1 onclick="document.location='index.php?menuaction=mobile.ui_home.index'">{global_title}</h1> 
    1616                                </div> 
    1717                        </div> 
     
    1919                        <div style="position:relative; float:right; width:50%; margin:2px;"> 
    2020                                <div style="{style_1}"> 
    21                                         <h1 onclick="window.location='index.php?menuaction=mobile.ui_home.dicas'">Dicas</h1> 
     21                                        <h1 onclick="document.location='index.php?menuaction=mobile.ui_home.dicas'">{lang_tips}</h1> 
    2222                                </div> 
    2323                                 
    2424                                <div style="{style_2}"> 
    25                                         <h1 onclick="window.location='{href_logout}'">{lang_logout}</h1> 
     25                                        <h1 onclick="document.location='{href_logout}'">{lang_logout}</h1> 
    2626                                </div> 
    2727                        </div> 
Note: See TracChangeset for help on using the changeset viewer.