kant / yii2-tinymce
Tinymce widget for Yii 2
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: >=5.4.0
This package is auto-updated.
Last update: 2024-10-14 19:52:49 UTC
README
This extension provides The Most Advanced WYSIWYG HTML Editor tinymce, called Gii, for Yii framework 2.0 applications.
For license information check the LICENSE-file.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist kant/yii2-tinymce
or add
"kant/yii2-tinymce": "~0.2"
to the require-dev section of your composer.json
file.
Usage
Once the extension is installed, simply modify your application configuration as follows:
<?= $form->field($model, 'content')->textarea([ //options ])->widget(TinymceWidget::class, [ 'clientOptions' => [ 'height' => '300px', //options ] ]); ?>
clientOptions are refered tinymce's official agruments:
see tinymce/docs