misharin-alexbear/yii2-tinymce

Renders a TinyMCE WYSIWYG text editor plugin widget.

Installs: 544

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Language:JavaScript

Type:yii2-extension

1 2020-07-03 14:48 UTC

This package is auto-updated.

Last update: 2025-05-29 00:51:45 UTC


README

Renders a TinyMCE WYSIWYG text editor plugin widget.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist misharin-alexbear/yii2-tinymce "*"

or add

"misharin-alexbear/yii2-tinymce": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

use alexbear94\tinymce\TinyMce;

<?= $form->field($model, 'content')->widget(TinyMce::className(), [
    'clientOptions' => [
        'language' => 'ru',
        'plugins' => [
            "advlist autolink lists link charmap print preview anchor",
            "searchreplace visualblocks code fullscreen",
            "insertdatetime media table contextmenu paste"
        ],
        'toolbar' => "undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
    ],
    'triggerSaveOnBeforeValidateForm' => true,
]); ?>

Screenshots