kotchuprik / yii2-medium-widget
Medium editor widget for Yii2
Installs: 419
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Language:JavaScript
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-11-09 16:47:58 UTC
README
This widget is the wrapper for the MediumEditor.
Usage
Widget
echo \kotchuprik\medium\Widget::widget([ 'model' => $model, 'attribute' => 'attribute', ]);
Widget with settings
echo \kotchuprik\medium\Widget::widget([ 'model' => $model, 'attribute' => 'attribute', 'theme' => 'bootstrap', 'settings' => [ 'buttons' => ['bold', 'italic', 'quote'], ], ]);
ActiveForm widget
echo $form->field($model, 'attribute')->widget(\kotchuprik\medium\Widget::className());
ActiveForm widget with settings
echo $form->field($model, 'attribute')->widget(\kotchuprik\medium\Widget::className(), [ 'theme' => 'bootstrap', 'settings' => [ 'buttons' => ['bold', 'italic', 'quote'], ], ]);