thiagotalma/yii2-zopim

zopim extension for the Yii2 framework

Installs: 2 516

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 2

Open Issues: 0

Type:yii2-extension

v1.0 2016-06-29 14:57 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:26:49 UTC


README

This extension provides easy way to add Zopim chat 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-zopim "*"

or add

"thiagotalma/yii2-zopim": "*"

to the require section of your composer.json file.

Usage

In your /views/layouts/main.php add

use talma\zopim\widgets\ZopimScript;

Then before </head> add following code

<?= ZopimScript::widget(
    [
        'appId' => '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(
    ZopimScript::widget([
        'appId' => 'XXXXXXXX',
        'omitScriptTag' => true
    ]), \yii\web\View::POS_END
); ?>