kokjan/vendor/nick-denry/yii2-ckeditor-roxyfileman/docs/ckeditor.md

20 lines
430 B
Markdown
Raw Normal View History

2026-02-25 06:59:34 +00:00
CKEditor integration
---
### Example
I.e. with [2amigos/yii2-ckeditor-widget](https://github.com/2amigos/yii2-ckeditor-widget)
In your view
```php
use dosamigos\ckeditor\CKEditor;
use nickdenry\ckeditorRoxyFileman\RoxyFileManager;
```
And then
```php
$form->field($model, 'body')->widget(CKEditor::className(), [
'preset' => 'full',
'clientOptions' => RoxyFileManager::attach([/* another ckeditor options */]),
]);
```