Subversion Repositories eFlore/Projets.eflore-projets

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
314 delphine 1
<?php
2
interface Formateur {
315 delphine 3
	const MIME_MAP = 'text/html';
320 aurelien 4
	const MIME_PNG = 'image/png';
315 delphine 5
	public function __construct($info);
314 delphine 6
	public function initialiserImage();
7
	public function chargerDonnees();
8
	public function dessinerPoint($text, $merge, $couleurs);
9
	public function formaterCartes($usemap);
10
 
11
	//+----------------------------------------------------------------------------------------------------------------+
12
	// sous fonction de calculer répartition
13
	public function chercherVille($inventory, $tab_code_insee = array());
14
	public function formerCommentaire($utm, $inventory);
15
	public function formerDate($inventory);
16
	/*
17
	 * Stockage commentaire associe a un point :
18
	 *
19
	 * Param :
20
	 * @text : texte cumule
21
	 * @merge : indicateur de commentaire fusionne
22
	 * @name : commune associee
23
	 * @comment : commentaire
24
	 * @origine : origine de la donnee
25
	 *
26
	 *
27
	 * TODO : rendre cette fonction independante des valeurs d'origine passee en parametre
28
	 */
29
	public function stockerCommentaire($text, $merge, $name, $comment, $origine, $x, $y);
30
 
31
}
32
?>