为yii2的基础camp trix编辑器

安装次数: 27

依赖者: 0

建议者: 0

安全: 0

星星: 2

关注者: 2

分支: 0

公开问题: 0

类型:yii2-extension

dev-master 2015-12-27 12:19 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:03:58 UTC


README

Basecamp Trix Widget for yii2trix文本编辑器 的包装器。

使用方法

扩展安装后,只需在代码中使用即可

像无模型的widget一样

echo \kotchuprik\trix\Widget::widget();

像widget一样

echo \kotchuprik\trix\Widget::widget([
    'model' => $model,
    'attribute' => 'attributeModel',
]);

像ActiveForm widget一样

use \kotchuprik\trix\Widget;

echo $form->field($model, 'attributeModel')->widget(Widget::className());