Subversion Repositories Applications.annuaire

Rev

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

Rev 248 Rev 293
Line 1... Line 1...
1
<?php
1
<?php
-
 
2
// declare(encoding='UTF-8');
2
/**
3
/**
3
* PHP Version 5
4
 * Service 
4
*
5
 *
5
* @category  PHP
6
 * @category	php 5.2
6
* @package   annuaire
7
 * @package		Annuaire::Services
7
* @author    aurelien <aurelien@tela-botanica.org>
8
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
-
 
9
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
8
* @copyright 2010 Tela-Botanica
10
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
* @version   SVN: <svn_id>
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
11
* @link      /doc/annuaire/
13
 * @version		$Id$
12
*/
14
 */
13
 
-
 
14
Class StatistiquesAnnuaire extends JRestService {
15
class StatistiquesAnnuaire extends JRestService {
Line 15... Line 16...
15
 
16
 
Line 16... Line 17...
16
	public function getElement($uid){
17
	public function getElement($uid){
17
 
18
 
18
	    if(!isset($uid[0])) {
19
	    if (!isset($uid[0])) {
19
			$id_annuaire = $uid[0];
20
			$id_annuaire = $uid[0];
20
	    } else {
21
	    } else {
Line 21... Line 22...
21
			$id_annuaire = Config::get('annuaire_defaut');
22
			$id_annuaire = Config::get('annuaire_defaut');
22
	    }
23
	    }
23
	    
24
	    
24
		if(isset($uid[1])) {
25
		if (isset($uid[1])) {
25
			$type_stat = $uid[1];
26
			$type_stat = $uid[1];
Line 26... Line 27...
26
	    } else {
27
	    } else {
Line 27... Line 28...
27
	    	$type_stat = '';
28
	    	$type_stat = '';
28
	    }
-
 
29
	    
29
	    }
30
	    $controleur = new StatistiqueControleur();
30
	    
31
	    
31
	    $controleur = new StatistiqueControleur();
32
	    switch($type_stat) {
-
 
33
	    
32
	    
34
	    	case 'annees' :
33
	    switch($type_stat) {
35
	    		$graph = $controleur->obtenirStatistiquesParAnnees($id_annuaire);
34
	    	case 'annees' :
36
	    	break;
-
 
37
	    
35
	    		$graph = $controleur->obtenirStatistiquesParAnnees($id_annuaire);
38
	    	case 'continents' :
36
	    		break;
39
	    		$graph = $controleur->obtenirStatistiquesInscritsParContinents($id_annuaire);
37
	    	case 'continents' :
40
	    	break;
-
 
41
	    	
38
	    		$graph = $controleur->obtenirStatistiquesInscritsParContinents($id_annuaire);
42
	    	case 'europe' :
39
	    		break;
43
	    		$graph = $controleur->obtenirStatistiquesInscritsEurope($id_annuaire);
40
	    	case 'europe' :
44
	    	break;
-
 
45
	    	
41
	    		$graph = $controleur->obtenirStatistiquesInscritsEurope($id_annuaire);
46
	    	case 'modification' :
42
	    		break;
47
	    		$graph = $controleur->obtenirStatistiquesModificationsProfil($id_annuaire);
-
 
48
	    	break;
43
	    	case 'modification' :
Line 49... Line 44...
49
	    	
44
	    		$graph = $controleur->obtenirStatistiquesModificationsProfil($id_annuaire);
50
	    	default:
45
	    		break;
51
	    		$graph = $controleur->obtenirStatistiquesParCritere($id_annuaire,$type_stat, '');
46
	    	default:
52
	    	break;
-
 
53
	    }
-
 
54
		
47
	    		$graph = $controleur->obtenirStatistiquesParCritere($id_annuaire,$type_stat, '');
55
		// Envoi d'une image png
48
	    }
56
		header("Content-type: image/png charset=utf-8\n\n");
49
		
57
		imagepng ($graph);
50
		// Envoi d'une image png