mirror of
https://github.com/weewx/weewx.git
synced 2026-04-22 10:37:06 -04:00
20 lines
670 B
PHP
20 lines
670 B
PHP
## analytics module for standard skin
|
|
## Copyright Tom Keffer, Matthew Wall
|
|
## See LICENSE.txt for your rights
|
|
#errorCatcher Echo
|
|
|
|
## Include the Google Analytics code if an Id has been specified
|
|
|
|
#if $Extras.has_key('googleAnalyticsId')
|
|
<script type="text/javascript">
|
|
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
|
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
|
</script>
|
|
<script type="text/javascript">
|
|
try {
|
|
var pageTracker = _gat._getTracker("$Extras.googleAnalyticsId");
|
|
pageTracker._trackPageview();
|
|
} catch(err) {}
|
|
</script>
|
|
#end if
|