Download the PHP package wolfguard/yii2-tinymce-codemirror without Composer
On this page you can find all versions of the php package wolfguard/yii2-tinymce-codemirror. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package yii2-tinymce-codemirror
TinyMCE integration for Yii2
Yii2 extension to simplify TinyMCE WYSIWYG editor usage in your application.
Provides:
- widget;
- compressor action;
- integration with file managers like elFinder;
- integration with spelling services like Yandex.
- TinyMCE gone to npm package to always have the latest version;
- Added integration with great elFinder extension;
- (TODO) Icon to insert many images at once;
- Few bugs resolved. It's all working now.
Fork of another extension with some additional features:
- CodeMirror plugin integration for source code mode.
CodeMirror plugin was taken from Christiaan Baartse repository
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist wolfguard/yii2-tinymce-codemirror "*"
or add
"wolfguard/yii2-tinymce-codemirror": "*"
to the require section of your composer.json
file.
Usage
Widget basic usage
Scripts compressor
This can be used to optimize widget loading time.
At fist setup controller map:
Next add route to configured action to widget options:
ElFinder file manager
Install mihaildev/yii2-elfinder extension. You can just include
to the require section of your composer.json
file.
Configure elFinder (more info here).:
Then select file manager provider in the widget:
You can customize some window (width and height) and manager (language, filter, path and multiple) properties. If you want to use different access, watermark and roots setting just prepare controllers:
and then point to required controller in the widget:
Any file manager
You can write your own file manager provider.
Just inherit it from \wolfguard\tinymce\fm\FileManager
class and realize getFileBrowserCallback
and registerAsset
functions.
Spellchecker
TinyMce has bundled plugin for spellchecking but it requires backed to work.
You can use Yandex spellchecker service.
More info about it here: http://api.yandex.ru/speller/doc/dg/tasks/how-to-spellcheck-tinymce.xml
Or you can build own spellcheking service using code provided by moxicode: http://www.tinymce.com/download/download.php
Combined features
CodeMirror configuration
Additional configuration options
You can modify the behaviour of the codemirror plugin, by adding a codemirror object to the TinyMCE configuration.
indentOnInit: boolean (false) CodeMirror automatically indents code. With the indentOnInit option, you tell the Source Code editor to indent all code when the editor opens. This might be slow for large documents.
path: string (codemirror) You might already have CodeMirror hosted elsewhere (outside TinyMCE). In that case, you can reuse that CodeMirror instance, by overriding the default path. For example:
path: 'http://www.mysite.com/tools/codemirror-4.8'
config: Object CodeMirror configuration object, which is passed on to the CodeMirror instance. Check http://codemirror.net/doc/manual.html for available configuration options.
jsFiles: Array Array of CodeMirror Javascript files you want to (additionally) load. For example:
jsFiles: [
'mode/clike/clike.js',
'mode/php/php.js'
]
The following Javascript files are always loaded: lib/codemirror.js, addon/edit/matchbrackets.js, mode/xml/xml.js, mode/javascript/javascript.js, mode/css/css.js, mode/htmlmixed/htmlmixed.js, addon/dialog/dialog.js, addon/search/searchcursor.js, addon/search/search.js, addon/selection/active-line.js.
cssFiles: Array Array of CodeMirror CSS files you want to (additionally) load. For example:
cssFiles: [
'theme/neat.css',
'theme/elegant.css'
]
The following CSS files are always loaded: lib/codemirror.css, addon/dialog/dialog.css.
Config example
All versions of yii2-tinymce-codemirror with dependencies
bower-asset/tinymce-dist Version *
bower-asset/codemirror Version *