Subversion Repositories Applications.annuaire

Rev

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

Rev 78 Rev 104
Line 44... Line 44...
44
		if (isset($_POST['m'])) {
44
		if (isset($_POST['m'])) {
45
			$methode = $_POST['m'];
45
			$methode = $_POST['m'];
46
			unset($_POST['m']);
46
			unset($_POST['m']);
47
		}
47
		}
48
	}
48
	}
-
 
49
	
-
 
50
	if (isset($_GET['m'])) {
-
 
51
		$methode = $_GET['m'];
-
 
52
		//unset($_GET['m']);
-
 
53
	} else {
-
 
54
		if (isset($_POST['m'])) {
-
 
55
			$methode = $_POST['m'];
-
 
56
			//unset($_POST['m']);
-
 
57
		} else {
-
 
58
				// Gestion des paramêtres définis dans Papyrus
-
 
59
			if (isset($GLOBALS['_GEN_commun']['info_application']->m)) {
-
 
60
					       $methode = $GLOBALS['_GEN_commun']['info_application']->m;
-
 
61
			}
-
 
62
 
-
 
63
			// Gestion des paramêtres définis dans Papyrus
-
 
64
			if (isset($GLOBALS['_GEN_commun']['info_application']->id_annuaire)) {
-
 
65
					        $_GET['id_annuaire'] = $GLOBALS['_GEN_commun']['info_application']->id_annuaire;
-
 
66
			}
-
 
67
		}
-
 
68
	}
Line 49... Line 69...
49
 
69
 
Line 50... Line 70...
50
	$identification = Config::get('identification');
70
	$identification = Config::get('identification');
51
 
71
 
Line 262... Line 282...
262
			$retour = $controleur->rechercherInscrit($identifiant_annuaire,$criteres, $exclusive);
282
			$retour = $controleur->rechercherInscrit($identifiant_annuaire,$criteres, $exclusive);
263
			break;
283
			break;
Line 264... Line 284...
264
 
284
 
265
 
285
 
266
		// Fonctions cartographiques
286
		// Fonctions cartographiques
267
		case 'annuaire_recherche_inscrit_carto':
-
 
268
			$identifiant_annuaire = $_GET['id_annuaire'];
287
		case 'annuaire_inscrits_carto':
269
 
288
			$identifiant_annuaire = $_GET['id_annuaire'];
270
			$criteres = $_GET;
289
			$criteres = $_GET;
271
			$controleur = new AnnuaireControleur();
290
			$controleur = new AnnuaireControleur();
Line 335... Line 354...
335
}
354
}
Line 336... Line 355...
336
 
355
 
337
function afficherContenuTete() {
356
function afficherContenuTete() {
338
	// c'est très moche, il ne faudrait pas faire comme ceci
357
	// c'est très moche, il ne faudrait pas faire comme ceci
339
	if(function_exists('GEN_stockerStyleExterne')) {
358
	if(function_exists('GEN_stockerStyleExterne')) {
-
 
359
		GEN_stockerStyleExterne('annuaire_papyrus',Config::get('base_url_styles').'squelettes/css/annuaire_complexe.css');
340
		GEN_stockerStyleExterne('annuaire_papyrus',GEN_CHEMIN_PAP.'applications/annuaire/squelettes/css/annuaire_complexe.css');
360
		GEN_stockerStyleExterne('annuaire_papyrus_simple',Config::get('base_url_styles').'squelettes/css/annuaire.css');
341
	}
361
	}
342
	return '';
362
	return '';
Line 343... Line 363...
343
}
363
}
Line 352... Line 372...
352
 
372
 
Line 353... Line 373...
353
function afficherContenuMenu() {
373
function afficherContenuMenu() {
354
 
374
 
-
 
375
	if(isset($_GET['id_annuaire'])) {
-
 
376
		$id_annuaire = $_GET['id_annuaire'];
355
	if(isset($_GET['id_annuaire'])) {
377
	} else {
356
		$id_annuaire = $_GET['id_annuaire'];
378
		$id_annuaire = Config::get('annuaire_defaut');
357
	}
379
	}
358
 
-
 
359
	$menu = '<ul>';
380
	
360
	$menu .= '<li><a href="m=liste_listes"> G&eacute;rer les liste d\'ontologie </a></li>';
-
 
361
	$menu .= '<li><a href="m=liste_annu"> G&eacute;rer les annuaires </a></li>';
-
 
362
	$menu .= '</ul>';
-
 
363
 
381
	$controleur = new NavigationControleur();
Line 364... Line 382...
364
	return $menu;
382
	return $controleur->afficherContenuMenu($id_annuaire,true);
365
}
383
}