Merge pull request #32 from Progi1984/master

Piwik Analytics
This commit is contained in:
Justin Walsh 2013-07-22 08:36:04 -07:00
commit 1c687f6a6e
3 changed files with 26 additions and 3 deletions

View File

@ -149,6 +149,13 @@ This will embed the google analytics tracking code.
{
"google_analytics": "UA-XXXXXXXXX-XX"
}
###Piwik Analytics:
This will embed the piwik tracking code.
{
"piwik_analytics": "my-url-for-piwik.com"
}
## Running Locally

View File

@ -279,5 +279,20 @@ if ($homepage && $homepage_url !== '/') {
</script>
<?php } ?>
<?php if ($options['piwik_analytics']) { ?>
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://<?php echo $options['piwik_analytics'];?>/";
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "1"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
})();
</script>
<?php } ?>
</body>
</html>
</html>

View File

@ -35,7 +35,8 @@ function get_options() {
'twitter' => array(),
'links' => array(),
'colors' => false,
'google_analytics' => false
'google_analytics' => false,
'piwik_analytics' => false
);
// Load User Config
@ -261,4 +262,4 @@ function get_tree($path = '.', $clean_path = '', $title = ''){
return $tree;
}
?>
?>