drexlerux / yii2-lcswitch
LC Switch extension for Yii2
Installs: 60
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.6.0
- bower-asset/lc-switch: *
- yiisoft/yii2: ~2.0.0
This package is not auto-updated.
Last update: 2025-03-30 07:15:49 UTC
README
LC Switch extension for Yii2
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist drexlerux/yii2-lcswitch "*"
or add
"drexlerux/yii2-lcswitch": "*"
to the require section of your composer.json
file.
Usage
- Namespace to use widget class
use drexlerux\lcswitch\LcSwitch;
- Once the extension is installed, simply use it in your code by :
<?= $form->field($model, 'attribute')->widget(LcSwitch::classname(), [ 'options'=>[ 'on_text' => Yii::t('app', 'Yes'), // Default value 'of_text' => Yii::t('app', 'No'), // Default value 'width' => '100px' ], 'events' => [ 'lcs-init' => "function(input){}" 'lcs-statuschange' => 'function(){}', 'lcs-on' => 'function(){}', 'lcs-off' => 'function(){}', ] ]); ?>