source: trunk/expressoMail1_2/inc/class.user.inc.php @ 5509

Revision 5509, 1.7 KB checked in by gustavo, 12 years ago (diff)

Ticket #2488 - Adicionar cabecalho de licenca em arquivos que nao o possuem

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2                /***************************************************************************
3                * Expresso Livre                                                           *
4                * http://www.expressolivre.org                                             *
5                * --------------------------------------------                             *
6                *  This program is free software; you can redistribute it and/or modify it *
7                *  under the terms of the GNU General Public License as published by the   *
8                *  Free Software Foundation; either version 2 of the License, or (at your  *
9                *  option) any later version.                                              *
10                \**************************************************************************/
11               
12class user{
13               
14                function get_user(){
15                       
16                        return "<br><font color='blue'>GET USER</font>".                       
17                                                "<br>usuario =".$_SESSION['phpgw_info']['expressomail']['user']['userid'].
18                                                "<br>senha =".$_SESSION['phpgw_info']['expressomail']['user']['passwd'];                       
19                }
20                                                       
21                function verify_user($params){
22                       
23                        $userId = $params['userid'];
24                        $delay =  $params['delay'];
25                       
26                        if($delay)
27                                sleep($delay);
28                       
29                        $result = '';                                   
30                       
31                        if($userId == $_SESSION['phpgw_info']['expressomail']['user']['userid'])                               
32                                $result =  '<br><font color="green">VERIFY USER ... VERIFIED</font>';                   
33                        else                   
34                                $result =  '<br><font color="red">VERIFY USER ... NOT VERIFIED</font>';
35                       
36                        return $result;                                                                                 
37                }
38               
39                function verify_user_get($params){
40                       
41                        return $params;
42                }       
43               
44                function verify_user_post($params){
45                       
46                        return $this -> verify_user($params);
47                }
48               
49                function get_email(){
50                        return $_SESSION['phpgw_info']['expressomail']['user']['email'];       
51                }
52               
53        }
54?>
Note: See TracBrowser for help on using the repository browser.