s1lver/yii2-summernote

Summernote Super Simple WYSIWYG Editor for Yii2

Installs: 16

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Open Issues: 1

Type:yii2-extension

1.1.0 2023-04-04 09:13 UTC

This package is auto-updated.

Last update: 2024-11-30 01:57:53 UTC


README

Latest Stable Version Total Downloads PHPUnit Status Mutation testing badge Static Analysis Status

https://summernote.org

Install

composer require s1lver/yii2-summernote "^1.0.0"

or add

"s1lver/yii2-summernote": "^1.0.0"

to the require section of your composer.json file.

How to use

Displaying custom buttons

<?= $form->field($model, 'test')->widget(SummernoteWidget::class, [
    'customToolbarButtons' => [
        [
            'type' => 'dropdown',
            'label' => 'Custom tags',
            'tooltip' => 'Custom tags',
            'values' => [
                'Tag1',
                'Tag2',
                'Tag3',
            ],
        ],
    ],
]) ?>