PHP code example of wolfguard / yii2-tinymce-codemirror
1. Go to this page and download the library: Download wolfguard/yii2-tinymce-codemirror library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wolfguard / yii2-tinymce-codemirror example snippets
$form->field($model, 'content')->widget(\wolfguard\tinymce\TinyMce::className())
'controllerMap' => [
'tinyMce' => [
'class' => 'wolfguard\tinymce\TinyMceController',
]
],
$form->field($model, 'content')->widget(\wolfguard\tinymce\TinyMce::className(), [
'compressorRoute' => 'tinyMce/tinyMceCompressor'
])
"mihaildev/yii2-elfinder": "*"
'controllerMap' => [
'elfinder' => [
'class' => 'mihaildev\elfinder\Controller',
'access' => ['@'],
'disabledCommands' => ['netmount'],
'roots' => [
[
'baseUrl'=>'@web',
'basePath'=>'@webroot',
'path' => 'files/global',
'name' => 'Global'
],
],
'watermark' => [
'source' => __DIR__.'/logo.png',
'marginRight' => 5,
'marginBottom' => 5,
'quality' => 95,
'transparency' => 70,
'targetType' => IMG_GIF|IMG_JPG|IMG_PNG|IMG_WBMP,
'targetMinPixel' => 200
]
]
],
$form->field($model, 'content')->widget(\wolfguard\tinymce\TinyMce::className(), [
'fileManager' => [
'class' => \wolfguard\tinymce\fm\MihaildevElFinder::className()
],
])
'controllerMap' => [
'elf1' => [
'class' => 'mihaildev\elfinder\Controller',
'access' => ['@'],
'roots' => [
[
'baseUrl'=>'@web',
'basePath'=>'@webroot',
'path' => 'files/global',
'name' => 'Global'
],
],
'watermark' => [
'source' => __DIR__.'/logo.png',
'marginRight' => 5,
'marginBottom' => 5,
'quality' => 95,
'transparency' => 70,
'targetType' => IMG_GIF|IMG_JPG|IMG_PNG|IMG_WBMP,
'targetMinPixel' => 200
]
],
'elf2' => [
'class' => 'mihaildev\elfinder\Controller',
'access' => ['*'],
'roots' => [
[
'path' => 'files/some1',
'name' => ['category' => 'my','message' => 'Some Name']
],
[
'path' => 'files/some2',
'name' => ['category' => 'my','message' => 'Some Name'],
'access' => ['read' => '*', 'write' => 'UserFilesAccess']
]
]
]
],
$form->field($model, 'content2')->widget(\wolfguard\tinymce\TinyMce::className(), [
'fileManager' => [
'class' => \wolfguard\tinymce\fm\MihaildevElFinder::className(),
'controller' => 'elf2'
]
])
$form->field($model, 'content')->widget(\wolfguard\tinymce\TinyMce::className(), [
'spellcheckerUrl' => 'http://speller.yandex.net/services/tinyspell'
])
<?= $form->field($model, 'content')->widget(\wolfguard\tinymce\TinyMce::className(), [
'compressorRoute' => 'site/tinyMceCompressor',
'fileManager' => [
'class' => \wolfguard\tinymce\fm\MihaildevElFinder::className()
],
'spellcheckerUrl'=>'http://speller.yandex.net/services/tinyspell',
'options' => ['rows' => 6]
])