Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 641 Rev 731
Line 43... Line 43...
43
	
43
	
Line 44... Line 44...
44
	private static String formatGalerie = "";
44
	private static String formatGalerie = "";
Line -... Line 45...
-
 
45
	
-
 
46
	private static String formatListe = "";
-
 
47
 
-
 
48
	private static String utiliseRedirectionImage;
45
	
49
 
46
	private static String formatListe = "";
50
	private static String imageRedirectUrl;
47
 
51
 
48
	/**
52
	/**
49
	 * Constructeur sans argument
53
	 * Constructeur sans argument
Line 93... Line 97...
93
			"formatGalerie");
97
			"formatGalerie");
Line 94... Line 98...
94
			
98
			
95
			formatListe = Dictionary.getDictionary("configuration").get(
99
			formatListe = Dictionary.getDictionary("configuration").get(
Line -... Line 100...
-
 
100
			"formatListe");
-
 
101
			
-
 
102
			utiliseRedirectionImage = Dictionary.getDictionary("configuration").get(
-
 
103
			"utiliseRedirectionImage");
-
 
104
			
-
 
105
			imageRedirectUrl = Dictionary.getDictionary("configuration").get(
96
			"formatListe");
106
			"imageRedirectUrl");
97
			
107
			
Line 98... Line 108...
98
			//licence = Dictionary.getDictionary("configuration").get("licence");
108
			//licence = Dictionary.getDictionary("configuration").get("licence");
99
	}
109
	}
Line 197... Line 207...
197
	
207
	
Line 198... Line 208...
198
	public static String getFormatListe() {
208
	public static String getFormatListe() {
199
 
209
 
-
 
210
		return formatListe;
-
 
211
	}
-
 
212
 
-
 
213
	public static boolean utiliseRedirectionImages() {
-
 
214
		
-
 
215
		return utiliseRedirectionImage.equals("1");
-
 
216
 
-
 
217
	}
-
 
218
 
-
 
219
	public static String getImageRedirectUrl() {
-
 
220
		
-
 
221
		return imageRedirectUrl;
200
		return formatListe;
222