gertexllc / yii2-adsense-widget
A Yii2 widget for displaying Google Adsense ads.
dev-main
2023-04-29 02:40 UTC
Requires
- php: >=7.1
- ext-json: *
- yidas/yii2-bower-asset: 2.0.13.1
- yiisoft/yii2: ^2.0
This package is not auto-updated.
Last update: 2025-03-30 10:10:15 UTC
README
A Yii2 widget for displaying Google Adsense ads.
Installation
The preferred way to install this extension is through Composer.
Either run
composer require gertexllc/yii2-adsense-widget
or add
"gertexllc/yii2-adsense-widget": "^1.0"
to the require section of your composer.json
file.
Usage
Use the widget in your view file like this:
<?= \gertexllc\widgets\AdsenseWidget::widget([ 'client' => 'your_ad_client_id', 'slot' => 'your_ad_slot_id', ]) ?>
You can also specify additional parameters like format
and responsive
:
<?= \gertexllc\widgets\AdsenseWidget::widget([ 'client' => 'your_ad_client_id', 'slot' => 'your_ad_slot_id', 'format' => 'auto', 'responsive' => true, ]) ?>
Configuration
You can configure the widget using the following properties:
client
: The Google Adsense client ID.slot
: The Google Adsense slot ID.format
: The ad format. Defaults to'auto'
.responsive
: Whether to use responsive ads. Defaults totrue
.
License
This package is released under the MIT License. See the LICENSE file for details.
Support
If you have any questions or issues, please open an issue.