Ai_GirlFriend/xunifriend_RaeeC/addons/summernote/config.php

171 lines
4.6 KiB
PHP
Raw Normal View History

2026-01-31 19:15:41 +08:00
<?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' => 'followingToolbar',
'title' => '是否浮动工具栏',
'type' => 'radio',
'content' => [
1 => '是',
0 => '否',
],
'value' => '0',
'rule' => 'required',
'msg' => '',
'tip' => '是否浮动工具栏,通常配置自适应高度时使用',
'ok' => '',
'extend' => '',
],
[
'name' => 'airMode',
'title' => '内嵌模式',
'type' => 'radio',
'content' => [
1 => '是',
0 => '否',
],
'value' => '0',
'rule' => 'required',
'msg' => '',
'tip' => '启用内嵌模式后将禁用工具栏',
'ok' => '',
'extend' => '',
],
[
'name' => 'pasteAsPlainText',
'title' => '粘贴为纯文本',
'type' => 'radio',
'content' => [
1 => '启用',
0 => '禁用',
],
'value' => '0',
'rule' => 'required',
'msg' => '',
'tip' => '启用后在编辑器粘贴时将粘贴为纯文本格式',
'ok' => '',
'extend' => '',
],
[
'name' => 'toolbar',
'title' => '默认工具栏配置',
'type' => 'text',
'content' => [],
'value' => '['."\r\n"
.' ["style", ["style", "undo", "redo"]],'."\r\n"
.' ["font", ["bold", "underline", "strikethrough", "clear"]],'."\r\n"
.' ["fontname", ["color", "fontname", "fontsize"]],'."\r\n"
.' ["para", ["ul", "ol", "paragraph", "height"]],'."\r\n"
.' ["table", ["table", "hr"]],'."\r\n"
.' ["insert", ["link", "picture", "video"]],'."\r\n"
.' ["select", ["image", "attachment"]],'."\r\n"
.' ["view", ["fullscreen", "codeview", "help"]]'."\r\n"
.']',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => 'rows=10',
],
[
'name' => 'fontNames',
'title' => '默认字体列表',
'type' => 'string',
'content' => [],
'value' => 'Arial, Arial Black, Serif, Sans, Courier, Courier New, Comic Sans MS, Helvetica, Impact, Lucida Grande,Open Sans, Hiragino Sans GB, Microsoft YaHei, 微软雅黑, 宋体, 黑体, 仿宋, 楷体, 幼圆',
'rule' => '',
'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://summernote.org/deep-dive/',
'rule' => '',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
],
];