トーク:関数リファレンス/BcBaser googleAnalytics
提供: baserCMS公式ガイド
目次
説明
Google Analyticsのトラッキングコードを出力します。
使い方
$this->BcBaser->googleanalytics();
パラメータ
戻り値
- (string)
- スクリプトタグ
用例
基本
コード
<?php $this->BcBaser->googleanalytics(); ?>
出力
<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', '【管理画面で設定したトラッキングコード】']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>