dlds/yii2-summernote

Yii2 Intercooler extensions

Installs: 1 809

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 1

Open Issues: 0

Type:yii2-extension

1.2 2016-05-18 17:39 UTC

This package is not auto-updated.

Last update: 2024-04-23 19:14:14 UTC


README

Installation

Composer

The preferred way to install this extension is through Composer.

Either run

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

or add

"dlds/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