Skip to content

cybercog/yii2-tinymce-widget

 
 

Repository files navigation

TinyMCE Widget for Yii2

Latest Version Software License Build Status Coverage Status Quality Score Total Downloads

Renders a TinyMCE WYSIWYG text editor plugin widget.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require "2amigos/yii2-tinymce-widget" "*"

or add

"2amigos/yii2-tinymce-widget" : "*"

to the require section of your application's composer.json file.

Usage


use dosamigos\tinymce\TinyMce;

<?= $form->field($model, 'text')->widget(TinyMce::className(), [
    'options' => ['rows' => 6],
    'language' => 'es',
    'clientOptions' => [
        'plugins' => [
            "advlist autolink lists link charmap print preview anchor",
            "searchreplace visualblocks code fullscreen",
            "insertdatetime media table contextmenu paste"
        ],
        'toolbar' => "undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
    ]
]);?>

Further Information

Please, check the TinyMCE plugin site documentation for further information about its configuration options.

2amigOS!
Web development has never been so fun!
www.2amigos.us

About

TinyMCE WYSIWYG widget for Yii2

Resources

License

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Languages

  • PHP 100.0%