Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
class Exemple extends aControleur {
//+----------------------------------------------------------------------------------------------------------------+
// Méthodes
/**
* Fonction d'affichage par défaut
*/
public function executerActionParDefaut() {
$donnees = array();
$metier = new MaClasseMetierDao();
$donnees['info'] = $metier->getInfo();
$this->setSortie(self::RENDU_CORPS, $this->getVue('exemple', $donnees));
}
}
?>