You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

481 lines
23 KiB

2 years ago
  1. /**
  2. * ueditor完整配置项
  3. * 可以在这里配置整个编辑器的特性
  4. */
  5. /**********************************************************
  6. * 所有被注释的配置项均为UEditor默认值
  7. * 修改默认配置请首先确保已经完全明确该参数的真实用途
  8. * 主要有两种修改方案一种是取消此处注释然后修改成对应参数另一种是在实例化编辑器时传入对应参数
  9. * 当升级编辑器时可直接使用旧版配置文件替换新版配置文件,不用担心旧版配置文件中因缺少新功能所需的参数而导致脚本报错
  10. **************************提示********************************/
  11. (function () {
  12. /**
  13. * 编辑器资源文件根路径它所表示的含义是以编辑器实例化页面为当前路径指向编辑器资源文件即dialog等文件夹的路径
  14. * 鉴于很多同学在使用编辑器的时候出现的种种路径问题此处强烈建议大家使用"相对于网站根目录的相对路径"进行配置
  15. * "相对于网站根目录的相对路径"也就是以斜杠开头的形如"/myProject/ueditor/"这样的路径
  16. * 如果站点中有多个不在同一层级的页面需要实例化编辑器且引用了同一UEditor的时候此处的URL可能不适用于每个页面的编辑器
  17. * 因此UEditor提供了针对不同页面的编辑器可单独配置的根路径具体来说在需要实例化编辑器的页面最顶部写上如下代码即可当然需要令此处的URL等于对应的配置
  18. * window.UEDITOR_HOME_URL = "/xxxx/xxxx/";
  19. */
  20. var URL = window.UEDITOR_HOME_URL || getUEBasePath();
  21. /**
  22. * 配置项主体注意此处所有涉及到路径的配置别遗漏URL变量
  23. */
  24. window.UEDITOR_CONFIG = {
  25. //为编辑器实例添加一个路径,这个不能被注释
  26. UEDITOR_HOME_URL: URL
  27. // 服务器统一请求接口路径
  28. , serverUrl: URL + "net/controller.ashx"
  29. //工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的重新定义
  30. //, toolbars: [[
  31. // 'fullscreen', 'source', '|', 'undo', 'redo', '|',
  32. // 'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|',
  33. // 'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',
  34. // 'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',
  35. // 'directionalityltr', 'directionalityrtl', 'indent', '|',
  36. // 'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',
  37. // 'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
  38. // 'simpleupload', 'insertimage', 'emotion', 'scrawl', 'insertvideo', 'music', 'attachment', 'map', 'gmap', 'insertframe', 'insertcode', 'webapp', 'pagebreak', 'template', 'background', '|',
  39. // 'horizontal', 'date', 'time', 'spechars', 'snapscreen', 'wordimage', '|',
  40. // 'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', 'charts', '|',
  41. // 'print', 'preview', 'searchreplace', 'drafts', 'help'
  42. //]]
  43. , toolbars: [['fullscreen', 'source', '|', 'undo', 'redo', '|',
  44. 'bold', 'italic', 'underline', 'formatmatch', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', '|', 'fontfamily', 'fontsize', '|',
  45. 'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|', 'insertimage', 'emotion', 'attachment', 'wordimage', '|',
  46. 'horizontal', 'spechars', 'snapscreen', 'preview']]
  47. //当鼠标放在工具栏上时显示的tooltip提示,留空支持自动多语言配置,否则以配置值为准
  48. //,labelMap:{
  49. // 'anchor':'', 'undo':''
  50. //}
  51. //语言配置项,默认是zh-cn。有需要的话也可以使用如下这样的方式来自动多语言切换,当然,前提条件是lang文件夹下存在对应的语言文件:
  52. //lang值也可以通过自动获取 (navigator.language||navigator.browserLanguage ||navigator.userLanguage).toLowerCase()
  53. //,lang:"zh-cn"
  54. //,langPath:URL +"lang/"
  55. //主题配置项,默认是default。有需要的话也可以使用如下这样的方式来自动多主题切换,当然,前提条件是themes文件夹下存在对应的主题文件:
  56. //现有如下皮肤:default
  57. //,theme:'default'
  58. //,themePath:URL +"themes/"
  59. //, zIndex: 900 //编辑器层级的基数,默认是900
  60. //针对getAllHtml方法,会在对应的head标签中增加该编码设置。
  61. //,charset:"utf-8"
  62. //若实例化编辑器的页面手动修改的domain,此处需要设置为true
  63. //,customDomain:false
  64. //常用配置项目
  65. //,isShow : true //默认显示编辑器
  66. //,textarea:'editorValue' // 提交表单时,服务器获取编辑器提交内容的所用的参数,多实例时可以给容器name属性,会将name给定的值最为每个实例的键值,不用每次实例化的时候都设置这个值
  67. //,initialContent:'欢迎使用ueditor!' //初始化编辑器的内容,也可以通过textarea/script给值,看官网例子
  68. //,autoClearinitialContent:true //是否自动清除编辑器初始内容,注意:如果focus属性设置为true,这个也为真,那么编辑器一上来就会触发导致初始化的内容看不到了
  69. //,focus:false //初始化时,是否让编辑器获得焦点true或false
  70. //如果自定义,最好给p标签如下的行高,要不输入中文时,会有跳动感
  71. //,initialStyle:'p{line-height:1em}'//编辑器层级的基数,可以用来改变字体等
  72. //,iframeCssUrl: URL + '/themes/iframe.css' //给编辑区域的iframe引入一个css文件
  73. //indentValue
  74. //首行缩进距离,默认是2em
  75. //,indentValue:'2em'
  76. //,initialFrameWidth:1000 //初始化编辑器宽度,默认1000
  77. //,initialFrameHeight:320 //初始化编辑器高度,默认320
  78. //,readonly : false //编辑器初始化结束后,编辑区域是否是只读的,默认是false
  79. //,autoClearEmptyNode : true //getContent时,是否删除空的inlineElement节点(包括嵌套的情况)
  80. //启用自动保存
  81. //,enableAutoSave: true
  82. //自动保存间隔时间, 单位ms
  83. //,saveInterval: 500
  84. //,fullscreen : false //是否开启初始化时即全屏,默认关闭
  85. //,imagePopup:true //图片操作的浮层开关,默认打开
  86. //,autoSyncData:true //自动同步编辑器要提交的数据
  87. //,emotionLocalization:false //是否开启表情本地化,默认关闭。若要开启请确保emotion文件夹下包含官网提供的images表情文件夹
  88. //粘贴只保留标签,去除标签所有属性
  89. //,retainOnlyLabelPasted: false
  90. //,pasteplain:false //是否默认为纯文本粘贴。false为不使用纯文本粘贴,true为使用纯文本粘贴
  91. //纯文本粘贴模式下的过滤规则
  92. //'filterTxtRules' : function(){
  93. // function transP(node){
  94. // node.tagName = 'p';
  95. // node.setStyle();
  96. // }
  97. // return {
  98. // //直接删除及其字节点内容
  99. // '-' : 'script style object iframe embed input select',
  100. // 'p': {$:{}},
  101. // 'br':{$:{}},
  102. // 'div':{'$':{}},
  103. // 'li':{'$':{}},
  104. // 'caption':transP,
  105. // 'th':transP,
  106. // 'tr':transP,
  107. // 'h1':transP,'h2':transP,'h3':transP,'h4':transP,'h5':transP,'h6':transP,
  108. // 'td':function(node){
  109. // //没有内容的td直接删掉
  110. // var txt = !!node.innerText();
  111. // if(txt){
  112. // node.parentNode.insertAfter(UE.uNode.createText('    '),node);
  113. // }
  114. // node.parentNode.removeChild(node,node.innerText())
  115. // }
  116. // }
  117. //}()
  118. //,allHtmlEnabled:false //提交到后台的数据是否包含整个html字符串
  119. //insertorderedlist
  120. //有序列表的下拉配置,值留空时支持多语言自动识别,若配置值,则以此值为准
  121. //,'insertorderedlist':{
  122. // //自定的样式
  123. // 'num':'1,2,3...',
  124. // 'num1':'1),2),3)...',
  125. // 'num2':'(1),(2),(3)...',
  126. // 'cn':'一,二,三....',
  127. // 'cn1':'一),二),三)....',
  128. // 'cn2':'(一),(二),(三)....',
  129. // //系统自带
  130. // 'decimal' : '' , //'1,2,3...'
  131. // 'lower-alpha' : '' , // 'a,b,c...'
  132. // 'lower-roman' : '' , //'i,ii,iii...'
  133. // 'upper-alpha' : '' , lang //'A,B,C'
  134. // 'upper-roman' : '' //'I,II,III...'
  135. //}
  136. //insertunorderedlist
  137. //无序列表的下拉配置,值留空时支持多语言自动识别,若配置值,则以此值为准
  138. //,insertunorderedlist : { //自定的样式
  139. // 'dash' :'— 破折号', //-破折号
  140. // 'dot':' 。 小圆圈', //系统自带
  141. // 'circle' : '', // '○ 小圆圈'
  142. // 'disc' : '', // '● 小圆点'
  143. // 'square' : '' //'■ 小方块'
  144. //}
  145. //,listDefaultPaddingLeft : '30'//默认的左边缩进的基数倍
  146. //,listiconpath : 'http://bs.baidu.com/listicon/'//自定义标号的路径
  147. //,maxListLevel : 3 //限制可以tab的级数, 设置-1为不限制
  148. //,autoTransWordToList:false //禁止word中粘贴进来的列表自动变成列表标签
  149. //fontfamily
  150. //字体设置 label留空支持多语言自动切换,若配置,则以配置值为准
  151. //,'fontfamily':[
  152. // { label:'',name:'songti',val:'宋体,SimSun'},
  153. // { label:'',name:'kaiti',val:'楷体,楷体_GB2312, SimKai'},
  154. // { label:'',name:'yahei',val:'微软雅黑,Microsoft YaHei'},
  155. // { label:'',name:'heiti',val:'黑体, SimHei'},
  156. // { label:'',name:'lishu',val:'隶书, SimLi'},
  157. // { label:'',name:'andaleMono',val:'andale mono'},
  158. // { label:'',name:'arial',val:'arial, helvetica,sans-serif'},
  159. // { label:'',name:'arialBlack',val:'arial black,avant garde'},
  160. // { label:'',name:'comicSansMs',val:'comic sans ms'},
  161. // { label:'',name:'impact',val:'impact,chicago'},
  162. // { label:'',name:'timesNewRoman',val:'times new roman'}
  163. //]
  164. //fontsize
  165. //字号
  166. //,'fontsize':[10, 11, 12, 14, 16, 18, 20, 24, 36]
  167. //paragraph
  168. //段落格式 值留空时支持多语言自动识别,若配置,则以配置值为准
  169. //,'paragraph':{'p':'', 'h1':'', 'h2':'', 'h3':'', 'h4':'', 'h5':'', 'h6':''}
  170. //rowspacingtop
  171. //段间距 值和显示的名字相同
  172. //,'rowspacingtop':['5', '10', '15', '20', '25']
  173. //rowspacingBottom
  174. //段间距 值和显示的名字相同
  175. //,'rowspacingbottom':['5', '10', '15', '20', '25']
  176. //lineheight
  177. //行内间距 值和显示的名字相同
  178. //,'lineheight':['1', '1.5','1.75','2', '3', '4', '5']
  179. //customstyle
  180. //自定义样式,不支持国际化,此处配置值即可最后显示值
  181. //block的元素是依据设置段落的逻辑设置的,inline的元素依据BIU的逻辑设置
  182. //尽量使用一些常用的标签
  183. //参数说明
  184. //tag 使用的标签名字
  185. //label 显示的名字也是用来标识不同类型的标识符,注意这个值每个要不同,
  186. //style 添加的样式
  187. //每一个对象就是一个自定义的样式
  188. //,'customstyle':[
  189. // {tag:'h1', name:'tc', label:'', style:'border-bottom:#ccc 2px solid;padding:0 4px 0 0;text-align:center;margin:0 0 20px 0;'},
  190. // {tag:'h1', name:'tl',label:'', style:'border-bottom:#ccc 2px solid;padding:0 4px 0 0;margin:0 0 10px 0;'},
  191. // {tag:'span',name:'im', label:'', style:'font-style:italic;font-weight:bold'},
  192. // {tag:'span',name:'hi', label:'', style:'font-style:italic;font-weight:bold;color:rgb(51, 153, 204)'}
  193. //]
  194. //打开右键菜单功能
  195. //,enableContextMenu: true
  196. //右键菜单的内容,可以参考plugins/contextmenu.js里边的默认菜单的例子,label留空支持国际化,否则以此配置为准
  197. //,contextMenu:[
  198. // {
  199. // label:'', //显示的名称
  200. // cmdName:'selectall',//执行的command命令,当点击这个右键菜单时
  201. // //exec可选,有了exec就会在点击时执行这个function,优先级高于cmdName
  202. // exec:function () {
  203. // //this是当前编辑器的实例
  204. // //this.ui._dialogs['inserttableDialog'].open();
  205. // }
  206. // }
  207. //]
  208. //快捷菜单
  209. //,shortcutMenu:["fontfamily", "fontsize", "bold", "italic", "underline", "forecolor", "backcolor", "insertorderedlist", "insertunorderedlist"]
  210. //elementPathEnabled
  211. //是否启用元素路径,默认是显示
  212. //,elementPathEnabled : true
  213. //wordCount
  214. //,wordCount:true //是否开启字数统计
  215. //,maximumWords:10000 //允许的最大字符数
  216. //字数统计提示,{#count}代表当前字数,{#leave}代表还可以输入多少字符数,留空支持多语言自动切换,否则按此配置显示
  217. //,wordCountMsg:'' //当前已输入 {#count} 个字符,您还可以输入{#leave} 个字符
  218. //超出字数限制提示 留空支持多语言自动切换,否则按此配置显示
  219. //,wordOverFlowMsg:'' //<span style="color:red;">你输入的字符个数已经超出最大允许值,服务器可能会拒绝保存!</span>
  220. //tab
  221. //点击tab键时移动的距离,tabSize倍数,tabNode什么字符做为单位
  222. //,tabSize:4
  223. //,tabNode:'&nbsp;'
  224. //removeFormat
  225. //清除格式时可以删除的标签和属性
  226. //removeForamtTags标签
  227. //,removeFormatTags:'b,big,code,del,dfn,em,font,i,ins,kbd,q,samp,small,span,strike,strong,sub,sup,tt,u,var'
  228. //removeFormatAttributes属性
  229. //,removeFormatAttributes:'class,style,lang,width,height,align,hspace,valign'
  230. //undo
  231. //可以最多回退的次数,默认20
  232. //,maxUndoCount:20
  233. //当输入的字符数超过该值时,保存一次现场
  234. //,maxInputCount:1
  235. //autoHeightEnabled
  236. // 是否自动长高,默认true
  237. //,autoHeightEnabled:true
  238. //scaleEnabled
  239. //是否可以拉伸长高,默认true(当开启时,自动长高失效)
  240. //,scaleEnabled:false
  241. //,minFrameWidth:800 //编辑器拖动时最小宽度,默认800
  242. //,minFrameHeight:220 //编辑器拖动时最小高度,默认220
  243. //autoFloatEnabled
  244. //是否保持toolbar的位置不动,默认true
  245. //,autoFloatEnabled:true
  246. //浮动时工具栏距离浏览器顶部的高度,用于某些具有固定头部的页面
  247. //,topOffset:30
  248. //编辑器底部距离工具栏高度(如果参数大于等于编辑器高度,则设置无效)
  249. //,toolbarTopOffset:400
  250. //设置远程图片是否抓取到本地保存
  251. //,catchRemoteImageEnable: true //设置是否抓取远程图片
  252. //pageBreakTag
  253. //分页标识符,默认是_ueditor_page_break_tag_
  254. //,pageBreakTag:'_ueditor_page_break_tag_'
  255. //autotypeset
  256. //自动排版参数
  257. //,autotypeset: {
  258. // mergeEmptyline: true, //合并空行
  259. // removeClass: true, //去掉冗余的class
  260. // removeEmptyline: false, //去掉空行
  261. // textAlign:"left", //段落的排版方式,可以是 left,right,center,justify 去掉这个属性表示不执行排版
  262. // imageBlockLine: 'center', //图片的浮动方式,独占一行剧中,左右浮动,默认: center,left,right,none 去掉这个属性表示不执行排版
  263. // pasteFilter: false, //根据规则过滤没事粘贴进来的内容
  264. // clearFontSize: false, //去掉所有的内嵌字号,使用编辑器默认的字号
  265. // clearFontFamily: false, //去掉所有的内嵌字体,使用编辑器默认的字体
  266. // removeEmptyNode: false, // 去掉空节点
  267. // //可以去掉的标签
  268. // removeTagNames: {标签名字:1},
  269. // indent: false, // 行首缩进
  270. // indentValue : '2em', //行首缩进的大小
  271. // bdc2sb: false,
  272. // tobdc: false
  273. //}
  274. //tableDragable
  275. //表格是否可以拖拽
  276. //,tableDragable: true
  277. //sourceEditor
  278. //源码的查看方式,codemirror 是代码高亮,textarea是文本框,默认是codemirror
  279. //注意默认codemirror只能在ie8+和非ie中使用
  280. //,sourceEditor:"codemirror"
  281. //如果sourceEditor是codemirror,还用配置一下两个参数
  282. //codeMirrorJsUrl js加载的路径,默认是 URL + "third-party/codemirror/codemirror.js"
  283. //,codeMirrorJsUrl:URL + "third-party/codemirror/codemirror.js"
  284. //codeMirrorCssUrl css加载的路径,默认是 URL + "third-party/codemirror/codemirror.css"
  285. //,codeMirrorCssUrl:URL + "third-party/codemirror/codemirror.css"
  286. //编辑器初始化完成后是否进入源码模式,默认为否。
  287. //,sourceEditorFirst:false
  288. //iframeUrlMap
  289. //dialog内容的路径 ~会被替换成URL,垓属性一旦打开,将覆盖所有的dialog的默认路径
  290. //,iframeUrlMap:{
  291. // 'anchor':'~/dialogs/anchor/anchor.html',
  292. //}
  293. //allowLinkProtocol 允许的链接地址,有这些前缀的链接地址不会自动添加http
  294. //, allowLinkProtocols: ['http:', 'https:', '#', '/', 'ftp:', 'mailto:', 'tel:', 'git:', 'svn:']
  295. //webAppKey 百度应用的APIkey,每个站长必须首先去百度官网注册一个key后方能正常使用app功能,注册介绍,http://app.baidu.com/static/cms/getapikey.html
  296. //, webAppKey: ""
  297. //默认过滤规则相关配置项目
  298. , disabledTableInTable: false //禁止表格嵌套
  299. //,allowDivTransToP:true //允许进入编辑器的div标签自动变成p标签
  300. //,rgb2Hex:true //默认产出的数据中的color自动从rgb格式变成16进制格式
  301. // xss 过滤是否开启,inserthtml等操作
  302. , xssFilterRules: true
  303. //input xss过滤
  304. , inputXssFilter: true
  305. //output xss过滤
  306. , outputXssFilter: true
  307. // xss过滤白名单 名单来源: https://raw.githubusercontent.com/leizongmin/js-xss/master/lib/default.js
  308. , whitList: {
  309. a: ['target', 'href', 'title', 'class', 'style'],
  310. abbr: ['title', 'class', 'style'],
  311. address: ['class', 'style'],
  312. area: ['shape', 'coords', 'href', 'alt'],
  313. article: [],
  314. aside: [],
  315. audio: ['autoplay', 'controls', 'loop', 'preload', 'src', 'class', 'style'],
  316. b: ['class', 'style'],
  317. bdi: ['dir'],
  318. bdo: ['dir'],
  319. big: [],
  320. blockquote: ['cite', 'class', 'style'],
  321. br: [],
  322. caption: ['class', 'style'],
  323. center: [],
  324. cite: [],
  325. code: ['class', 'style'],
  326. col: ['align', 'valign', 'span', 'width', 'class', 'style'],
  327. colgroup: ['align', 'valign', 'span', 'width', 'class', 'style'],
  328. dd: ['class', 'style'],
  329. del: ['datetime'],
  330. details: ['open'],
  331. div: ['class', 'style'],
  332. dl: ['class', 'style'],
  333. dt: ['class', 'style'],
  334. em: ['class', 'style'],
  335. font: ['color', 'size', 'face'],
  336. footer: [],
  337. h1: ['class', 'style'],
  338. h2: ['class', 'style'],
  339. h3: ['class', 'style'],
  340. h4: ['class', 'style'],
  341. h5: ['class', 'style'],
  342. h6: ['class', 'style'],
  343. header: [],
  344. hr: [],
  345. i: ['class', 'style'],
  346. img: ['src', 'alt', 'title', 'width', 'height', 'id', '_src', 'loadingclass', 'class', 'data-latex'],
  347. ins: ['datetime'],
  348. li: ['class', 'style'],
  349. mark: [],
  350. nav: [],
  351. ol: ['class', 'style'],
  352. p: ['class', 'style'],
  353. pre: ['class', 'style'],
  354. s: [],
  355. style: [],
  356. section: [],
  357. small: [],
  358. span: ['class', 'style'],
  359. sub: ['class', 'style'],
  360. sup: ['class', 'style'],
  361. strong: ['class', 'style'],
  362. table: ['width', 'border', 'align', 'valign', 'class', 'style'],
  363. tbody: ['align', 'valign', 'class', 'style'],
  364. td: ['width', 'rowspan', 'colspan', 'align', 'valign', 'class', 'style'],
  365. tfoot: ['align', 'valign', 'class', 'style'],
  366. th: ['width', 'rowspan', 'colspan', 'align', 'valign', 'class', 'style'],
  367. thead: ['align', 'valign', 'class', 'style'],
  368. tr: ['rowspan', 'align', 'valign', 'class', 'style', 'data-repeat'],
  369. tt: [],
  370. u: [],
  371. ul: ['class', 'style'],
  372. video: ['autoplay', 'controls', 'loop', 'preload', 'src', 'height', 'width', 'class', 'style']
  373. }
  374. };
  375. function getUEBasePath(docUrl, confUrl) {
  376. return getBasePath(docUrl || self.document.URL || self.location.href, confUrl || getConfigFilePath());
  377. }
  378. function getConfigFilePath() {
  379. var configPath = document.getElementsByTagName('script');
  380. return configPath[configPath.length - 1].src;
  381. }
  382. function getBasePath(docUrl, confUrl) {
  383. var basePath = confUrl;
  384. if (/^(\/|\\\\)/.test(confUrl)) {
  385. basePath = /^.+?\w(\/|\\\\)/.exec(docUrl)[0] + confUrl.replace(/^(\/|\\\\)/, '');
  386. } else if (!/^[a-z]+:/i.test(confUrl)) {
  387. docUrl = docUrl.split("#")[0].split("?")[0].replace(/[^\\\/]+$/, '');
  388. basePath = docUrl + "" + confUrl;
  389. }
  390. return optimizationPath(basePath);
  391. }
  392. function optimizationPath(path) {
  393. var protocol = /^[a-z]+:\/\//.exec(path)[0],
  394. tmp = null,
  395. res = [];
  396. path = path.replace(protocol, "").split("?")[0].split("#")[0];
  397. path = path.replace(/\\/g, '/').split(/\//);
  398. path[path.length - 1] = "";
  399. while (path.length) {
  400. if ((tmp = path.shift()) === "..") {
  401. res.pop();
  402. } else if (tmp !== ".") {
  403. res.push(tmp);
  404. }
  405. }
  406. return protocol + res.join("/");
  407. }
  408. window.UE = {
  409. getUEBasePath: getUEBasePath
  410. };
  411. })();