Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 68 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 68 Rev 72
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 68 2010-05-17 16:56:20Z jpm $
12
 * @version		SVN: $Id: Fiche.php 72 2010-05-21 13:58:00Z 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 169... Line 169...
169
		Ontologie::chargerListe(1013);
169
		Ontologie::chargerListe(1013);
Line 170... Line 170...
170
		
170
		
171
		foreach ($donnees as &$personnel) {
171
		foreach ($donnees as &$personnel) {
172
			$personnel['_fonction_'] = $this->construireTxtListeOntologie($personnel['csap_ce_truk_fonction']);
172
			$personnel['_fonction_'] = $this->construireTxtListeOntologie($personnel['csap_ce_truk_fonction']);
173
			$personnel['_statut_'] = $this->construireTxtListeOntologie($personnel['csap_ce_truk_statut']);
173
			$personnel['_statut_'] = $this->construireTxtListeOntologie($personnel['csap_ce_truk_statut']);
174
			$personnel['_tel_fax_'] = $this->construireTxtTruckSimple($personnel['cp_truk_telephone']);
174
			$personnel['_tel_fax_'] = $this->construireTxtListeOntologie($personnel['cp_truk_telephone']);
175
			$personnel['_courriel_'] = $this->construireTxtTruckSimple($personnel['cp_truk_courriel']);
175
			$personnel['_courriel_'] = $this->construireTxtTruckSimple($personnel['cp_truk_courriel']);
176
			$personnel['_contact_'] = $this->formaterOuiNon($personnel['csap_mark_contact']);
176
			$personnel['_contact_'] = $this->formaterOuiNon($personnel['csap_mark_contact']);
177
			$personnel['_specialite_'] = $this->construireTxtListeOntologie($personnel['cp_ce_truk_specialite']);
177
			$personnel['_specialite_'] = $this->construireTxtListeOntologie($personnel['cp_ce_truk_specialite']);
178
		}
178
		}