vitalik74 / yii2-bootstrap-wysihtml5-widget
The simple WYSIWYG editor widget based on bootstrap3-wysihtml5 for Yii2 framework.
Installs: 6 069
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 3
Open Issues: 2
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-10-26 18:01:05 UTC
README
This Yii2 widget provide simple wysiwyg editor - bootstrap3-wysihtml5
.
For bootstrap3-wysihtml5
see more https://github.com/bootstrap-wysiwyg/bootstrap3-wysiwyg.
REQUIREMENTS
The minimum requirement by this application template that your Web server supports PHP 5.4.0.
INSTALLATION
Install via Composer
If you do not have Composer, you may install it by following the instructions at getcomposer.org.
You can then install this widget. Put in your composer.json in require case:
"vitalik74/yii2-bootstrap-wysihtml5-widget": "*"
And run command "composer update"
USAGE
###Base usage like that:###
echo vitalik74\wysihtml5\Widget::widget([
'options' => [
'id' => 'test',
'style' => 'width: 810px; height: 200px',
'placeholder' => "Placeholder text ..."
],
]);
###In ActiveForm
use like that:###
<?= $form->field($model, 'body')->widget(\vitalik74\wysihtml5\Widget::className(), ['options' => [
'id' => 'test',
'style' => 'width: 810px; height: 200px',
'placeholder' => "Placeholder text ..."
],]) ?>