Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 207 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 207 Rev 210
Line 103... Line 103...
103
	    	}
103
	    	}
Line 104... Line 104...
104
	    	
104
	    	
Line 105... Line 105...
105
	    	self::$utilisateur = new $classe_utilisateur();
105
	    	self::$utilisateur = new $classe_utilisateur();
-
 
106
	    	
-
 
107
	    	if(self::$utilisateur->estAdmin()) {
-
 
108
	    		
-
 
109
	    		if($nouvelle_identite = self::changementIdentiteDemande()) {
-
 
110
	    			self::getUtilisateur()->setIdentite($nouvelle_identite);
106
	    	
111
	    		}
107
	    	if(self::$utilisateur->estAdmin()) {
112
	    		
108
	    		self::afficherBarreAdmin();
113
	    		self::afficherBarreAdmin();
109
	    	}
114
	    	}
Line 122... Line 127...
122
	public static function utilisateurEstIdentifie() {
127
	public static function utilisateurEstIdentifie() {
Line 123... Line 128...
123
    	
128
    	
124
    	return self::getUtilisateur()->estIdentifie();
129
    	return self::getUtilisateur()->estIdentifie();
Line -... Line 130...
-
 
130
    }
-
 
131
    
-
 
132
	public static function changementIdentiteDemande() {
-
 
133
    	
-
 
134
		if(self::getUtilisateur()->estAdmin() && isset($_POST['identite_utilisateur'])) {
-
 
135
			return $_POST['identite_utilisateur'];
-
 
136
		}
-
 
137
		
-
 
138
		return false;
125
    }
139
    }
Line 126... Line 140...
126
    
140
    
127
    private static function afficherFormulaireIdentification() {
141
    private static function afficherFormulaireIdentification() {
128
    	
142