Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 55 | Rev 69 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 55 Rev 62
Line 7... Line 7...
7
 * @category	Php 5.2
7
 * @category	Php 5.2
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @copyright	2010 Tela-Botanica
9
 * @copyright	2010 Tela-Botanica
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
 * @version		SVN: $Id: Fiche.php 55 2010-04-30 16:18:31Z jpm $
12
 * @version		SVN: $Id: Fiche.php 62 2010-05-06 13:21:56Z jpm $
13
 */
13
 */
14
class Fiche extends ColControleur {
14
class Fiche extends ColControleur {
Line 15... Line 15...
15
	
15
	
16
	private $structureDao = null;
16
	private $structureDao = null;
Line 542... Line 542...
542
			$donnees['publications'] = $personneDao->getPersonneAPublication($donnees['id']);
542
			$donnees['publications'] = $personneDao->getPersonneAPublication($donnees['id']);
543
			$this->traiterMetaDonnees($donnees['info']);
543
			$this->traiterMetaDonnees($donnees['info']);
544
			$this->traiterDonneesPersonne($donnees['info']);
544
			$this->traiterDonneesPersonne($donnees['info']);
545
			$this->traiterDonneesPersonneAPublication($donnees['publications']);
545
			$this->traiterDonneesPersonneAPublication($donnees['publications']);
546
			$this->postraiterDonnees($donnees);
546
			$this->postraiterDonnees($donnees);
547
			Debug::printr($donnees['publications']);
-
 
548
			$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_personne', $donnees));
547
			$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_personne', $donnees));
549
		}
548
		}
550
	}
549
	}
Line 551... Line 550...
551
	
550