Subversion Repositories Applications.annuaire

Rev

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

Rev 449 Rev 473
Line 164... Line 164...
164
		$donnees['tableau_mappage'] = $tableau_mappage[1];
164
		$donnees['tableau_mappage'] = $tableau_mappage[1];
Line 165... Line 165...
165
 
165
 
166
		if ($this->annuaireAvoirFormulaireInscription($annuaire['informations']['aa_code'])) {
166
		if ($this->annuaireAvoirFormulaireInscription($annuaire['informations']['aa_code'])) {
167
			$formulaire_inscription = $this->GetVue(Config::get('dossier_squelettes_formulaires').$annuaire['informations']['aa_code'].'_inscription',$donnees);
167
			$formulaire_inscription = $this->GetVue(Config::get('dossier_squelettes_formulaires').$annuaire['informations']['aa_code'].'_inscription',$donnees);
-
 
168
		} else {
168
		} else {
169
 
169
			$tableau_nom_mappage = $this->obtenirNomsChampsMappageAnnuaire($id_annuaire);
170
			$tableau_nom_mappage = $this->obtenirNomsChampsMappageAnnuaire($id_annuaire);
Line 170... Line 171...
170
			$donnees['mappage_nom_champs'] = $tableau_nom_mappage;
171
			$donnees['mappage_nom_champs'] = $tableau_nom_mappage;
171
 
172
 
Line 1198... Line 1199...
1198
 
1199
 
1199
		if (isset($valeurs_recherchees['departement'])) {
1200
		if (isset($valeurs_recherchees['departement'])) {
1200
			$valeur = $valeurs_recherchees['departement'];
1201
			$valeur = $valeurs_recherchees['departement'];
Line -... Line 1202...
-
 
1202
			$champ_critere = $tableau_mappage[0]['champ_code_postal'];
1201
			$champ_critere = $tableau_mappage[0]['champ_code_postal'];
1203
 
1202
 
1204
			$criteres = array(
1203
			$criteres = array($tableau_mappage[0]['champ_pays'] => $valeurs_recherchees['pays'],
1205
				$tableau_mappage[0]['champ_pays'] => $valeurs_recherchees['pays'],
1204
								$tableau_mappage[0]['champ_code_postal'] => $valeurs_recherchees['departement']
1206
				$tableau_mappage[0]['champ_code_postal'] => $valeurs_recherchees['departement']
Line 1205... Line 1207...
1205
			);
1207
			);
Line 1430... Line 1432...
1430
	public function chargerNombreAnnuaireListeInscritsParDepartement($id_annuaire) {
1432
	public function chargerNombreAnnuaireListeInscritsParDepartement($id_annuaire) {
1431
		$this->chargerModele('AnnuaireModele');
1433
		$this->chargerModele('AnnuaireModele');
1432
		return $this->AnnuaireModele->chargerNombreAnnuaireListeInscritsParDepartement($id_annuaire);
1434
		return $this->AnnuaireModele->chargerNombreAnnuaireListeInscritsParDepartement($id_annuaire);
1433
	}
1435
	}
1434
}
1436
}
1435
?>
-
 
1436
1437