45,6 → 45,10 |
|
private static String formatListe = ""; |
|
private static String utiliseRedirectionImage; |
|
private static String imageRedirectUrl; |
|
/** |
* Constructeur sans argument |
*/ |
95,6 → 99,12 |
formatListe = Dictionary.getDictionary("configuration").get( |
"formatListe"); |
|
utiliseRedirectionImage = Dictionary.getDictionary("configuration").get( |
"utiliseRedirectionImage"); |
|
imageRedirectUrl = Dictionary.getDictionary("configuration").get( |
"imageRedirectUrl"); |
|
//licence = Dictionary.getDictionary("configuration").get("licence"); |
} |
|
199,4 → 209,16 |
|
return formatListe; |
} |
|
public static boolean utiliseRedirectionImages() { |
|
return utiliseRedirectionImage.equals("1"); |
|
} |
|
public static String getImageRedirectUrl() { |
|
return imageRedirectUrl; |
|
} |
} |