
$(document).ready(function(){$('#agpmSuppressionCache').click(function(){$("#agpmOutilsDevMessage").html("Vidage cache en cours ...");var html=$.ajax({url:"/communs/ajax/viderCacheServeur.php",async:false}).responseText;$("#agpmOutilsDevMessage").html(html);});$('#agpmSuppressionSession').click(function(){$("#agpmOutilsDevMessage").html("Vidage session en cours ...");var html=$.ajax({url:"/communs/ajax/viderSession.php",async:false}).responseText;$("#agpmOutilsDevMessage").html(html);});$('#agpmAffichageVariablesSession').click(function(){$("#agpmOutilsDevMessage").html("Affichage variables session en cours ...");var html=$.ajax({url:"/communs/ajax/afficherVariablesSession.php",async:false}).responseText;$("#agpmOutilsDevMessage").html(html);});$('#agpmAffichageConfig').click(function(){$("#agpmOutilsDevMessage").html("Affichage config en cours ...");var html=$.ajax({url:"/communs/ajax/afficherConfig.php",async:false}).responseText;$("#agpmOutilsDevMessage").html(html);});

			
			// Bouton affichage du sitemap (AgpmConfig)
			// ------------------------------------------
			$('#agpmAffichageSiteMap').click(function(){

				// Msg chargement
				$("#agpmOutilsDevMessage").html("Affichage Sitemap en cours ..."); 
				
				// Ajax
				var html = $.ajax({
					data : "site=FMGMEX",
					url: "/communs/ajax/genererSiteMap.php",
					async: false
					}).responseText;

				$("#agpmOutilsDevMessage").html(html); 

				});
		
		$('#agpmCacherOutilsDev').click(function(){$("#agpmOutilsDev").hide();});});
