Fixed & Add Article accessible content method

This commit is contained in:
兔姬桑
2022-12-27 17:41:45 +08:00
committed by BrettonYe
parent 032370e6cd
commit 10d4f425e4
4 changed files with 34 additions and 33 deletions

View File

@@ -23,5 +23,6 @@
"We won't ask for your password again for a few hours.": "确认完成后,接下来几个小时内您不需再输入密码。",
"You are receiving this email because we received a password reset request for your account.": "您收到此电子邮件是因为我们收到了您帐户的密码重设请求。",
"Your email address is not verified.": "您的电子邮件尚未验证通过",
"You have not responded this ticket in :num hours, System has closed your ticket.": "超过:num小时未回复工单系统已自动关闭了您的工单"
"You have not responded this ticket in :num hours, System has closed your ticket.": "超过:num小时未回复工单系统已自动关闭了您的工单",
"You must have a valid subscription to view the content in this area!": "您必须拥有有效套餐才可以查看该区域的内容!"
}

View File

@@ -118,15 +118,14 @@
tinymce.init({
selector: 'textarea', // change this value according to your HTML
plugins: [
'advlist', 'autolink', 'link', 'image', 'lists', 'charmap', 'preview', 'anchor', 'pagebreak',
'searchreplace', 'wordcount', 'visualblocks', 'visualchars', 'code', 'fullscreen', 'insertdatetime',
'media', 'table', 'emoticons', 'template', 'help',
],
toolbar: 'undo redo | styles | bold italic | alignleft aligncenter alignright alignjustify | ' +
'bullist numlist outdent indent | link image | print preview media fullscreen | ' +
'forecolor backcolor emoticons | help',
menubar: 'favs file edit view insert format tools table help',
plugins: 'advlist autolink code emoticons help image importcss link lists media preview quickbars searchreplace table visualblocks visualchars wordcount',
toolbar: 'undo redo | styles | bold italic forecolor backcolor emoticons| alignleft aligncenter alignright alignjustify | bullist numlist outdent ' +
'indent | link image media',
menubar: 'view edit insert format table tools help',
link_default_target: '_blank',
quickbars_insert_toolbar: 'quicktable image media',
quickbars_selection_toolbar: 'bold italic underline | blocks | bullist numlist | blockquote quicklink',
extended_valid_elements: 'i[class|aria-hidden]',
language: '{{app()->getLocale()}}',
content_css: '/assets/bundle/app.min.css',
});