gertexllc/yii2-adsense-widget

A Yii2 widget for displaying Google Adsense ads.

dev-main 2023-04-29 02:40 UTC

This package is not auto-updated.

Last update: 2024-04-14 05:45:13 UTC


README

Latest Stable Version Total Downloads License

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 to true.

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.