tomlutzenberger / yii2-googleanalytics

Yii2 Widget for Google Analytics

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yii2 Google Analytics

GitHub release (latest SemVer) Packagist PHP Version Support Libraries.io dependency status for GitHub repo Packagist Downloads Lines of code Quality Gate Status Maintenance

Yii2 GoogleAnalytics

Yii2 Widget for Google Analytics

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist tomlutzenberger/yii2-googleanalytics "*"

or add

"tomlutzenberger/yii2-googleanalytics": "*"

to the required section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by:

<?= \TomLutzenberger\GoogleAnalytics\GoogleAnalytics::widget() ?>

You can either add the ID of your container to the params.php

<?php
      
return [
    // ...
    'gaId' => YII_ENV_PROD ? 'UA-1234567-01' : '',
];

or pass it directly to the widget:

<?= \TomLutzenberger\GoogleAnalytics\GoogleAnalytics::widget([
    'gaId' => 'UA-1234567-01'
]) ?>

License

This package is published under the MIT License and can be used for any commercial and personal projects.

About

Yii2 Widget for Google Analytics

License:MIT License


Languages

Language:PHP 100.0%