eluhr / yii2-widgets2-addons
Adds some helpful features to dmstr/yii2-widgets2-module
Installs: 204
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/eluhr/yii2-widgets2-addons
Requires
- dmstr/yii2-json-editor: ^1.4.2
- dmstr/yii2-widgets2-module: ^2.7.0-beta1
- rmrevin/yii2-fontawesome: ~2.9
- yiisoft/yii2-twig: ^2.1.0
This package is auto-updated.
Last update: 2025-09-29 03:06:43 UTC
README
This extension adds some useful functionality to the Yii2 Widgets 2 module.
Installation
The preferred way to install this extension is through composer.
Either run
composer require eluhr/yii2-widgets2-addons
or add
"eluhr/yii2-widgets2-addons": "*"
to the required section of your composer.json
file.
Configuration
Add the following to your config/web.php
:
use eluhr\widgets2\addons\Module; [ 'modules' => [ 'widgets-addons' => [ 'class' => Module::class ] ] ]
Usage
Add the Widget to your view:
use eluhr\widgets2\addons\widgets\CellLiveEditor; echo CellLiveEditor::widget();