a-shch/yii2-tinymce5-widget

TinyMCE Widget for Yii2

v0.0.1 2023-06-11 19:53 UTC

This package is not auto-updated.

Last update: 2024-04-29 23:06:02 UTC


README

Connecting tinymce5 as widget

Usage Example

<?= $form->field($model, 'content')->widget(ashch\tinymce\TinyMce::class); ?>

OR:

<?php

use ashch\tinymce\TinyMce;
------
<?= $form->field($model, 'content')->widget(TinyMCE::class, ['loadFileManager' => false, 'loadTemplates' => false,]); ?>

and other options ...