Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2844 Rev 2845
Line 21... Line 21...
21
	/**
21
	/**
22
	 * Proxy pour evenementNatif() qui n'envoie l'événement que si on est en prod
22
	 * Proxy pour evenementNatif() qui n'envoie l'événement que si on est en prod
23
	 */
23
	 */
24
	public static void pageVisitee(String url) {
24
	public static void pageVisitee(String url) {
25
		if (Configuration.isProd()) {
25
		if (Configuration.isProd()) {
26
			Util.LogVersFirebug("Page vue: " + url);
26
			//Util.LogVersFirebug("Page vue: " + url);
27
			Analytics.pageVisiteeNatif(url);
27
			Analytics.pageVisiteeNatif(url);
28
		} else {
28
		} else {
Line 29... Line 29...
29
			
29
			
30
		}
30
		}
Line 51... Line 51...
51
	/**
51
	/**
52
	 * Proxy pour evenementNatif() qui n'envoie l'événement que si on est en prod
52
	 * Proxy pour evenementNatif() qui n'envoie l'événement que si on est en prod
53
	 */
53
	 */
54
	public static void evenement(String categorie, String action, String label, int nombre) {
54
	public static void evenement(String categorie, String action, String label, int nombre) {
55
		if (Configuration.isProd()) {
55
		if (Configuration.isProd()) {
56
			Util.LogVersFirebug("Evenement: " + categorie + ", " + action + ", " + label + ", " + nombre);
56
			//Util.LogVersFirebug("Evenement: " + categorie + ", " + action + ", " + label + ", " + nombre);
57
			Analytics.evenementNatif(categorie, action, label, nombre);
57
			Analytics.evenementNatif(categorie, action, label, nombre);
58
		}
58
		}
59
	}
59
	}
Line 60... Line 60...
60
 
60