3ch3r46/yii2-tinymce

The TinyMCE Extension for yii framework

Installs: 5 210

Dependents: 0

Suggesters: 0

Security: 0

Type:yii2-extension

1.0.0 2014-05-28 15:40 UTC

This package is auto-updated.

Last update: 2024-03-09 12:06:03 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 3ch3r46/yii2-tinymce "1.0.0"

or add

"3ch3r46/yii2-tinymce": "1.0.0"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

[php]
use a3ch3r46\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,
	]
]);