Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 207 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 207 Rev 210
Line 1... Line 1...
1
<?php
1
<?php
2
class DrupalUtilisateur extends Utilisateur {
2
class DrupalUtilisateur extends Utilisateur {
Line -... Line 3...
-
 
3
	
-
 
4
	public function getNomUtilisateurPourId($id) {
-
 
5
		return db_result(db_query("SELECT name FROM {users} WHERE uid = %d", $id));
-
 
6
	}
-
 
7
	
-
 
8
	public function getIdUtilisateurPourNom($nom) {
-
 
9
		return db_result(db_query("SELECT uid FROM {users} WHERE name = '%s'", $nom));
-
 
10
	}
3
	
11
	
4
	public function getIdentifiantNumerique() {
-
 
5
		
12
	public function getIdentifiantNumerique() {
6
		return $GLOBALS['user']->uid;		
-
 
7
		
13
		return $GLOBALS['user']->uid;		
Line 8... Line 14...
8
	}
14
	}
9
	
15
	
10
	public function getEmail() {
16
	public function getEmail() {
Line 18... Line 24...
18
	public function getPrenom() {
24
	public function getPrenom() {
19
		return '';	
25
		return '';	
20
	}
26
	}
Line 21... Line 27...
21
	
27
	
22
	public function estAdmin() {
28
	public function estAdmin() {
23
		return in_array('3',array_keys($GLOBALS['user']->roles));
29
		return in_array('3',array_keys($GLOBALS['user']->roles)) || in_array('3',array_keys($GLOBALS['user']->roles)) ;
Line 24... Line 30...
24
	}
30
	}
25
	
31
	
26
	public function estIdentifie() {
32
	public function estIdentifie() {