PHP code example of nigabrein / yii2-ckeditor5-full-ru
1. Go to this page and download the library: Download nigabrein/yii2-ckeditor5-full-ru 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/ */
nigabrein / yii2-ckeditor5-full-ru example snippets
<?= $form->field($model, 'content')->widget(CKEditor::className(),[
'clientOptions' => [
'language' => 'en',
'uploadUrl' => 'upload', //url for upload files
'uploadField' => 'image', //field name in the upload form
]
]);