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

File:
1 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(){ 
Note: See TracChangeset for help on using the changeset viewer.