thiagotalma / yii2-hotjar
Hotjar extension for the Yii2 framework
Installs: 6 949
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 8
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-10-24 00:59:08 UTC
README
This extension provides easy way to add Hotjar tracking in your Yii2 application.
Based on https://github.com/cybercog/yii2-google-analytics
Installation
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require thiagotalma/yii2-hotjar "*
or add
"thiagotalma/yii2-hotjar": "*"
to the require section of your composer.json
file.
Usage
In your /views/layouts/main.php
add
use talma\hotjar\widgets\HotjarTracking;
Then before </head>
add following code
<?= HotjarTracking::widget( [ 'trackingId' => 'XXXXXXXX' ] ) ?>
Advanced usage
If you need the output without script
tag to combined with registerJs
or registerJsFile
as renderPartial
to add dependency or positioning configuration, you can use omitScriptTag true to disable script
tag, example:
<?= $this->registerJs( HotjarTracking::widget([ 'trackingId' => 'XXXXXXXX', 'omitScriptTag' => true ]), \yii\web\View::POS_END ); ?>