moonlandsoft / yii2-tinymce
The TinyMCE Extension for yii framework
Installs: 37 626
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 9
Open Issues: 3
Type:yii2-extension
Requires
This package is not auto-updated.
Last update: 2024-11-05 03:18:54 UTC
README
The TinyMCE Extension for yii framework
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist moonlandsoft/yii2-tinymce "*"
or add
"moonlandsoft/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 moonland\tinymce\TinyMCE; echo TinyMCE::widget(['name' => 'text-content']); $form->field($model, 'attribute')->widget(TinyMCE::className()); //toggle to tinyMCE or to textarea echo TinyMCE::widget(['name' => 'text-content', 'toggle' => ['active' => true]]); $form->field($model, 'attribute')->widget(TinyMCE::className(), [ 'toggle' => [ 'active' => true, ] ]);