Subversion Repositories eFlore/Applications.cel-consultation

Rev

Blame | Last modification | View Log | RSS feed

<?php
// declare(encoding='UTF-8');
/**
 * Classe de gestion des observations.
 *
 * @package     ODS_saisie
 * @category    Php 5.2
 * @author      Aurélien Peronnet <aurelien@tela-botanica.org>
 * @copyright   2010 Tela-Botanica
 * @license     http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
 * @license     http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
 * @version     SVN: $Id: Fiche.php 152 2010-09-06 16:19:12Z jpm $
 */
class Observation extends aControleur {
   
    public function __construct()  {
        
                parent::__construct();
        $this->initialiser();
    }
    
    public function initialiser() {
        
    }
    
    public function executerActionParDefaut() {
        return $this->afficherFormulaireRechercheObservation();
    }
    
    
    public function afficherFormulaireRechercheObservation() {
        $donnees = array();
        $formulaire = $this->getVue('formulaires/observation_recherche',$donnees);
        $this->setSortie(self::RENDU_CORPS, $formulaire);     
    }
    
    public function afficherResultatRechercheObservation() {
        
        $this->setSortie(self::RENDU_CORPS, $this->getVue('listes/observation_liste', $donnees));
    }
    
    // +---------------------------------------------------------------------------------------------------------------+
    // METHODES APPELEES LORS DE LA VALIDATION D'UN FORMULAIRE

    // +---------------------------------------------------------------------------------------------------------------+
    // METHODES DE RECHERCHE DE DONNEES    

}
?>