Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 911 → Rev 912

/trunk/controleurs/aControleur.php
111,6 → 111,17
}
}
}
/**
* Vide toutes les sorties (utile en cas de classe statique et de module ajax)
*/
protected function viderSorties() {
$this->setSortie(self::RENDU_TETE, '');
$this->setSortie(self::RENDU_CORPS, '');
$this->setSortie(self::RENDU_PIED, '');
$this->setSortie(self::RENDU_NAVIGATION, '');
$this->setSortie(self::RENDU_MENU, '');
}
 
/**
* Execute l'action d'un module donnée et fusionne le résultat avec le tableau de sortie.
137,7 → 148,7
trigger_error($m, E_USER_ERROR);
}
}
 
//+------------------------------------------------------------------------------------------------------+
// GESTION du VUES COMMUNES
/**