コッチュプリク / yii2-trix
为yii2的基础camp trix编辑器
dev-master
2015-12-27 12:19 UTC
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-09-14 19:03:58 UTC
README
Basecamp Trix Widget for yii2
是 trix文本编辑器 的包装器。
使用方法
扩展安装后,只需在代码中使用即可
像无模型的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());