| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?php
- return [
- [
- 'name' => 'classname',
- 'title' => '渲染文本框元素',
- 'type' => 'string',
- 'content' => [],
- 'value' => '.editor',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '用于对指定的元素渲染,一般情况下无需修改',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'height',
- 'title' => '默认高度',
- 'type' => 'string',
- 'content' => [],
- 'value' => '250',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '编辑器默认高度,auto表示自适应高度',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'minHeight',
- 'title' => '默认高度',
- 'type' => 'number',
- 'content' => [],
- 'value' => '250',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '编辑器最低高度',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'toolbarFloat',
- 'title' => '工具栏浮动',
- 'type' => 'radio',
- 'content' => [
- 1 => '是',
- 0 => '否',
- ],
- 'value' => '0',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '是否浮动工具栏',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'toolbar',
- 'title' => '默认工具栏',
- 'type' => 'text',
- 'content' => [],
- 'value' => '["title", "bold", "italic", "underline", "strikethrough", "fontScale", "color", "|", "ol", "ul", "blockquote", "code", "table", "|", "link", "image", "hr", "|", "indent", "outdent", "alignment"]',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'mobileToolbar',
- 'title' => '移动端工具栏',
- 'type' => 'text',
- 'content' => [],
- 'value' => '["bold", "underline", "strikethrough", "color", "ul", "ol"]',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '移动端工具栏配置',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'placeholder',
- 'title' => '默认占位文字',
- 'type' => 'string',
- 'content' => [],
- 'value' => '',
- 'rule' => '',
- 'msg' => '',
- 'tip' => '',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'isdompurify',
- 'title' => '是否启用加强的HTML过滤',
- 'type' => 'radio',
- 'content' => [
- 1 => '是',
- 0 => '否',
- ],
- 'value' => '1',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'allowiframeprefixs',
- 'title' => '设定允许iframe的白名单',
- 'type' => 'array',
- 'content' => [
- ],
- 'value' => [
- ],
- 'rule' => 'required',
- 'favisible' => 'isdompurify=1',
- 'msg' => '',
- 'tip' => '',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => '__tips__',
- 'title' => '温馨提示',
- 'type' => 'string',
- 'content' => [],
- 'value' => '工具栏配置请参考文档:https://simditor.tower.im/docs/doc-config.html',
- 'rule' => '',
- 'msg' => '',
- 'tip' => '',
- 'ok' => '',
- 'extend' => '',
- ],
- ];
|