a-shch/yii2-tinymce5-widget

TinyMCE Widget for Yii2

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

pkg:composer/a-shch/yii2-tinymce5-widget

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

This package is not auto-updated.

Last update: 2025-10-14 06:00:07 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 ...