Subversion Repositories Applications.annuaire

Rev

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

Rev 336 Rev 514
Line 48... Line 48...
48
    	
48
    	
49
    	if(!empty($erreurs)) {
49
    	if(!empty($erreurs)) {
50
    		$this->envoyer($erreurs);
50
    		$this->envoyer($erreurs);
Line -... Line 51...
-
 
51
    	}
-
 
52
    	
-
 
53
    	$annuaire_modele = $this->getModele('AnnuaireModele');
51
    	}
54
    	$params['infos_utilisateur'] = $annuaire_modele->obtenirInfosUtilisateurParId($elements_requis['id_cotisant']);
Line 52... Line 55...
52
    	
55
    	
53
    	$params['date_cotisation'] = $this->formaterVersDateMysql($params['date_cotisation']);
56
    	$params['date_cotisation'] = $this->formaterVersDateMysql($params['date_cotisation']);
Line 133... Line 136...
133
    		$id_inscrit = Registre::getInstance()->get('identification_id');
136
    		$id_inscrit = Registre::getInstance()->get('identification_id');
134
    	}
137
    	}
Line 135... Line 138...
135
    	
138
    	
Line -... Line 139...
-
 
139
    	$donnees['cotisations'] = $this->obtenirInformationsCotisationPourInscrit($param);
-
 
140
    	
136
    	$donnees['cotisations'] = $this->obtenirInformationsCotisationPourInscrit($param);
141
    	$donnees['infos_utilisateur'] = $this->getInformationsUtilisateur($id_inscrit);
Line 137... Line 142...
137
    	
142
    	
138
    	$donnees['url_formulaire_ajout_cotisation'] = $this->getUrlFormulaireAjoutCotisation($id_inscrit);
143
    	$donnees['url_formulaire_ajout_cotisation'] = $this->getUrlFormulaireAjoutCotisation($id_inscrit);
139
    	
144
    	
Line 190... Line 195...
190
    	
195
    	
Line 191... Line 196...
191
    	$donnees['url_ajout_cotisation'] = $this->getUrlAjoutCotisation();
196
    	$donnees['url_ajout_cotisation'] = $this->getUrlAjoutCotisation();
Line -... Line 197...
-
 
197
    	
-
 
198
    	$donnees['url_retour'] = $this->urlService();
192
    	
199
    	
Line 193... Line 200...
193
    	$donnees['url_retour'] = $this->urlService();
200
    	$donnees['infos_utilisateur'] = $this->getInformationsUtilisateur($donnees['id_cotisant']);
194
    	
201
    	
Line 213... Line 220...
213
    	
220
    	
Line 214... Line 221...
214
    	$donnees['url_modification_cotisation'] = $this->getUrlModificationCotisation($donnees['id_cotisation_a_modifer']);
221
    	$donnees['url_modification_cotisation'] = $this->getUrlModificationCotisation($donnees['id_cotisation_a_modifer']);
Line -... Line 222...
-
 
222
    	
-
 
223
    	$donnees['url_retour'] = $this->urlService();
215
    	
224
    	
Line 216... Line 225...
216
    	$donnees['url_retour'] = $this->urlService();
225
    	$donnees['infos_utilisateur'] = $this->getInformationsUtilisateur($donnees['id_utilisateur']);
217
    	
226
    	
Line -... Line 227...
-
 
227
    	$liste_cotisations_html = $this->renvoyerSquelette('formulaire_modification_cotisation', $donnees);
-
 
228
    	
-
 
229
    	return $liste_cotisations_html;
-
 
230
    }
-
 
231
    
-
 
232
    private function getInformationsUtilisateur($id_utilisateur) {
218
    	$liste_cotisations_html = $this->renvoyerSquelette('formulaire_modification_cotisation', $donnees);
233
    	$id_annuaire = !empty($_GET['id_annuaire']) ? $_GET['id_annuaire'] : Config::get('annuaire_defaut');
219
    	
234
    	$annuaire_modele = $this->getModele('AnnuaireModele');
Line 220... Line 235...
220
    	return $liste_cotisations_html;
235
    	return $annuaire_modele->obtenirInfosUtilisateurParId($id_annuaire, $id_utilisateur);