liberosoft / luyawysiwyg
Wysiwyg editor
Package info
github.com/liberosoft/luyawysiwyg
Language:JavaScript
Type:luya-module
pkg:composer/liberosoft/luyawysiwyg
v1.0.7
2018-11-30 13:28 UTC
Requires
- bower-asset/angular-ui-tinymce: ~0.0.18
This package is not auto-updated.
Last update: 2026-03-29 12:56:20 UTC
README
Wysiwyg Module for luya CMS. Tinymce suppport.
Installation
composer require liberosoft/luyawysiwyg
In order to add the modules to your project go into the modules section of your config:
return [ 'modules' => [ // ... 'wysiwygfrontend' => [ 'class' => 'liberosoft\luyawysiwyg\frontend\Module', 'useAppViewPath' => false, ], 'wysiwygadmin' => [ 'class' => 'liberosoft\luyawysiwyg\admin\Module', 'useAppViewPath' => false, 'textEditorOptions' => [ // tinymce options 'height' => '480', 'plugins' => 'link image code lists textcolor', 'toolbar' => 'undo redo | bold underline italic forecolor backcolor | alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | removeformat | code' ] ], // ... ], ];
run:
./luya import