Examples of PiwikTracker


Examples of net.ftb.tracking.piwik.PiwikTracker

            if (googleEnabled) {
                Main.tracker.trackPageViewFromReferrer(pageUrl, pageTitle, "Feed The Beast", "http://www.feed-the-beast.com", "/");
            }
            if (piwikEnabled) {
                try {
                    PiwikTracker p = new PiwikTracker(pageTitle, pageUrl);
                    if (extraData != null) {
                        for (Map.Entry<String, String> s : extraData.entrySet()) {
                            p.addExtraPair(s.getKey(), s.getValue());
                        }
                    }
                    p.start();
                } catch (Exception e) {
                    Logger.logError(e.getMessage(), e);
                }
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.