a-shch / yii2-tinymce5-widget
TinyMCE Widget for Yii2
Package info
github.com/a-shch/yii2-tinymce5-widget
Type:yii2-extension
pkg:composer/a-shch/yii2-tinymce5-widget
v0.0.1
2023-06-11 19:53 UTC
Requires
- tinymce/tinymce: 5.*
- yiisoft/yii2: 2.*
This package is not auto-updated.
Last update: 2026-03-31 08:07:12 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 ...