jp3cki / yii2-googleadsense
用于显示Google AdSense广告的扩展。
v2.0.0
2015-10-15 13:09 UTC
Requires
- php: >=5.4.0
- yiisoft/yii2: 2.0.*
Requires (Dev)
This package is auto-updated.
Last update: 2024-09-19 05:58:46 UTC
README
用于显示Google AdSense广告的扩展。
安装
安装此扩展的首选方式是通过composer。
可以运行
php composer.phar require --prefer-dist jp3cki/yii2-googleadsense "*"
或者将以下内容添加到您的composer.json
文件的require部分:
"jp3cki/yii2-googleadsense": "*"
to the require section of your composer.json
file.
使用方法
一旦扩展安装完成
- 将以下参数添加到您的params.php文件中,以指定您的AdSense客户端ID: 'googleAdSenseClient' => ''
- 可选地,通过在您的params-local.php文件中添加以下参数来禁用开发环境中的广告并显示占位符:'googleAdSenseEnable' => false
- 按照以下方式在您希望显示广告的地方使用小部件
'slot' => '<the ID of the ad slot>', 'style' => '<optional style information>', 'responsive' => '<optional value specifying whether the ad unit is responsive; defaults to false>' ]); ?>```