PluginProbe
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses / 2.10.01
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses v2.10.01
2.10.0 2.10.01 2.9.1 2.9.0 2.8.1 2.8.0 2.7.7 2.7.5 2.7.0 2.6.01 2.6.0 2.5.0 2.4.01 trunk 1.0.90 1.0.91 1.0.92 1.0.93 1.0.94 1.0.95 1.0.96 1.0.97 1.0.98 1.0.99 1.1.0 All 77 releases
← All changes | app/Models/Space.php +30 -0 1.0.922.10.01 View file →
@@ -13,5 +13,35 @@
13 13 */
14 14 class Space extends BaseSpace
15 15 {
16 16 protected static $type = 'community';
17 +
18 + public function defaultSettings()
19 + {
20 + return [
21 + 'restricted_post_only' => 'no',
22 + 'verified_post_only' => 'no', // yes / no
23 + 'emoji' => '',
24 + 'shape_svg' => '',
25 + 'custom_lock_screen' => 'no',
26 + 'can_request_join' => 'no',
27 + 'layout_style' => 'timeline',
28 + 'disable_layout_style' => 'no',
29 + 'show_sidebar' => 'yes',
30 + 'show_paywalls' => 'no',
31 + 'og_image' => '',
32 + 'links' => [],
33 + 'document_library' => 'no',
34 + 'document_access' => 'members_only',
35 + 'media_gallery' => 'no',
36 + 'media_access' => 'members_only',
37 + 'disable_post_sort_by' => 'no',
38 + 'default_post_sort_by' => '',
39 + 'default_comment_sort_by' => '',
40 + 'document_upload' => 'admin_only',
41 + 'topic_required' => 'no',
42 + 'hide_members_count' => 'no', // yes / no
43 + 'onboard_redirect_url' => '',
44 + 'members_page_status' => 'members_only', // members_only, everybody, logged_in, admin_only
45 + ];
46 + }
17 47 }