migvitram / yii2-ld-json
Widget for ld-json markup
Package info
github.com/migvitram/yii2-ld-json
Type:yii2-extension
pkg:composer/migvitram/yii2-ld-json
v0.0.1
2021-02-14 14:12 UTC
Requires
- yiisoft/yii2: ^2.0.13
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-08-17 01:42:57 UTC
README
Widget to add ld-json micro markup to head of HTML document (or on the page).
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist migvitram/yii2-ld-json "*"
or add
"migvitram/yii2-ld-json": "*"
to the require-dev section of your composer.json file.
Usage
If it is needed only widget, it is need to add to the main template layout:
use migvitram\ldJson\JsonLDWidget;
<?php echo JsonLDWidget::widget([]); ?>
It will make json data output. And than add the next, everywhere
<?php
use migvitram\ldJson\JsonLDWidget;
JsonLDWidget::widget([
'inputData' => [ ... ], // data of the product
'type' => JsonLDWidget::TYPE_PRODUCT,
]);
?>
In case JsonLD module needed, modify the web.php config file, modules section:
'modules' => [ ... 'ldJson' => [ 'class' => 'migvitram\ldJson\...', ] ]