MihailDev / yii2-ckeditor

Yii2 CKEditor
Other
119 stars 67 forks source link

Подключение другого скина #14

Closed Elgorm closed 7 years ago

Elgorm commented 7 years ago

Доброго времени суток, а как можно подключить другой скин?

MihailDev commented 7 years ago

согласно документации

This is a shortcut to CKEDITOR.skinName.

It is possible to install skins outside the default skin folder in the editor installation. In that case, the absolute URL path to that folder should be provided, separated by a comma ('skin_name,skin_path').

config.skin = 'moono';

config.skin = 'myskin,/customstuff/myskin/';

то есть вам надо скачать скин в публичную папку далее в настройках редактора

CKEditor::widget([
    'editorOptions' => [
'skin' => 'skinName,/path/to/skin/'
    ]
]);
Elgorm commented 7 years ago

Спасибо.