Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 315 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
interface Formateur {
        const MIME_MAP = 'text/html';
        const MIME_PNG = 'image/png';
        public function __construct($info);
        public function initialiserImage();
        public function chargerDonnees();
        public function dessinerPoint($text, $merge, $couleurs);
        public function formaterCartes($usemap);
        
        //+----------------------------------------------------------------------------------------------------------------+
        // sous fonction de calculer répartition
        public function chercherVille($inventory, $tab_code_insee = array());
        public function formerCommentaire($utm, $inventory);
        public function formerDate($inventory);
        /*
         * Stockage commentaire associe a un point :
         * 
         * Param : 
         * @text : texte cumule
         * @merge : indicateur de commentaire fusionne
         * @name : commune associee
         * @comment : commentaire
         * @origine : origine de la donnee
         * 
         * 
         * TODO : rendre cette fonction independante des valeurs d'origine passee en parametre
         */
        public function stockerCommentaire($text, $merge, $name, $comment, $origine, $x, $y);

}
?>