sheillendra / yii2-embed-script
Yii2 Embed Script
v1.0.0-alpha
2014-11-21 18:41 UTC
This package is not auto-updated.
Last update: 2024-09-12 00:24:23 UTC
README
为Yii2添加自定义脚本或第三方脚本,如谷歌跟踪和SEO或其他
快速开始
配置
...
'components'=>[
...
'embedScript'=>[
'class'=>'sheillendra\embedscript\Collection',
'services'=>[
'googleAnalytics'=>[
'class'=>'sheillendra\embedscript\services\GoogleAnalytics',
'trackerId'=>'UA-XXXXXXXX-X',
]
]
]
...
]
...
本地配置的技巧,对于尚未找到最佳方式的服务类使用NotActive,不使用条件(if)。
...
'components'=>[
...
'embedScript'=>[
'class'=>'sheillendra\embedscript\Collection',
'services'=>[
'googleAnalytics'=>[
'class'=>'sheillendra\embedscript\services\NotActive'
]
]
]
...
]
...
在视图/布局中作为小部件使用
<?php use sheillendra\embedscript\widgets\EmbedScript ?>
<?php EmbedScript::widget();?>
它也可以用作bootstrap模块,以便不需要在布局或视图中使用小部件。
#config
...
'bootstrap' => ['log','embedscript'],
'modules' => [
'embedscript' => ['class'=>'sheillendra\embedscript\Module']
]
...