Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 855 Bytes

readme.md

File metadata and controls

42 lines (26 loc) · 855 Bytes

Yii2 Summernote widget

Yii2 Summernote widget. Super simple WYSIWYG editor on Bootstrap

Installation

Composer

The preferred way to install this extension is through Composer.

Either run

php composer.phar require zelenin/yii2-summernote-widget "dev-master"

or add

"zelenin/yii2-summernote-widget": "dev-master"

to the require section of your composer.json

Usage

<?= $form->field($model, 'content')->widget(Summernote::className(), [
	'clientOptions' => [
		...
	]
]) ?>

or

<?= Summernote::widget([
	'name' => 'editor_id',
	'clientOptions' => [
		...
	]
]) ?>

See clientOptions

Author

Aleksandr Zelenin, e-mail: aleksandr@zelenin.me