Wrapper for Trumbowyg WYSIWYG.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist artkost/yii2-trumbowyg "*"
or add
"artkost/yii2-trumbowyg": "*"
to the require section of your composer.json
file.
Once the extension is installed, simply use it in your code:
echo \artkost\trumbowyg\Trumbowyg::widget([
'settings' => [
'lang' => 'ru'
]
]);
use artkost\trumbowyg\Trumbowyg;
echo $form->field($model, 'content')->widget(Trumbowyg::className(), [
'settings' => [
'lang' => 'ru'
]
]);