PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / trunk
Forumax – AI Powered Advanced Community Forum Plugin vtrunk
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / includes / Frontend / Frontend_Assets.php

Frontend_Assets.php in Forumax – AI Powered Advanced Community Forum Plugin trunk, at includes/Frontend/Frontend_Assets.php

150 lines 6.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Frontend;
3
4 /**
5 * Class Assets
6 * @package EazyDocs\Admin
7 */
8 class Frontend_Assets
9 {
10
11 /**
12 * Assets constructor.
13 */
14 public function __construct()
15 {
16 add_action('wp_enqueue_scripts', [$this, 'frontend_scripts'], 999);
17 add_action('elementor/widgets/widgets_registered', [$this, 'bbpc_elementor_script'], 999);
18
19 }
20
21 /**
22 * Register scripts and styles [ ELEMENTOR ]
23 */
24 public function bbpc_elementor_script()
25 {
26 // Elementor widgets scripts
27 wp_enqueue_style('bbpc-el-widgets', FORUMAX_STYLES . 'frontend/el-widgets.css', array(), FORUMAX_VERSION);
28 wp_enqueue_style('elegant-icon', FORUMAX_VEND . 'elegant-icon/style.css');
29 wp_register_script('bbpc_js', FORUMAX_FRONT_ASS . 'js/forumTab.js', ['jquery'], true, true);
30 wp_register_script('bbpc-frontend-js', FORUMAX_FRONT_ASS . 'js/frontend.js', array('jquery'), FORUMAX_VERSION, true);
31 wp_register_script('bbpc-ajax', FORUMAX_FRONT_ASS . 'js/ajax.js', array('jquery'), FORUMAX_VERSION, true);
32 }
33
34 /**
35 * Register scripts and styles [ FRONTEND ]
36 */
37 public function frontend_scripts()
38 {
39
40 if (!class_exists('bbPress') || !class_exists('Forumax')) {
41 return;
42 }
43
44 // Register front-end scripts/styles first so they are available for Gutenberg/Elementor blocks.
45 wp_register_script('bbpc-ajax', FORUMAX_FRONT_ASS . 'js/ajax.js', array('jquery'), FORUMAX_VERSION, true);
46 wp_register_script('bbpc-frontend-js', FORUMAX_FRONT_ASS . 'js/frontend.js', array('jquery'), FORUMAX_VERSION, true);
47
48 // Always localize 'forumax_localize_script' on 'jquery' (since it is loaded everywhere) if bbPress exists.
49 // This guarantees that any script requiring these variables won't fail with a ReferenceError.
50 wp_localize_script('jquery', 'forumax_localize_script', array(
51 'ajaxurl' => admin_url('admin-ajax.php'),
52 'nonce' => wp_create_nonce('forumax-nonce'),
53 'bbpc_subscribed_link' => wp_kses_post(bbp_get_forum_subscription_link()),
54 'bbpc_subscribed_forum_title' => forumax_forum_title(),
55 'bbpc_subscribed_forum_id' => bbp_get_forum_id(),
56 'bbp_topic_id' => get_the_ID()
57 ));
58
59 wp_register_style('bbpc-single', FORUMAX_STYLES . 'frontend/forum-single.css', array(), FORUMAX_VERSION);
60 wp_register_style('bbpc-forum', FORUMAX_STYLES . 'frontend/forum.css', array(), FORUMAX_VERSION);
61
62 if (!function_exists('is_bbpress') || !is_bbpress()) {
63 return;
64 }
65
66 wp_enqueue_style('elegant-icon', FORUMAX_VEND . 'elegant-icon/style.css');
67 wp_register_script('bbpc-wp-widget', FORUMAX_ASSETS . 'frontend/js/wp-widgets.js', array('jquery'), FORUMAX_VERSION, true);
68
69 // Nice Select for frontend (prefixed to avoid conflicts)
70 wp_register_style('frmx-nice-select', FORUMAX_VEND . 'frmx-nice-select/nice-select.css');
71 wp_register_script('frmx-nice-select', FORUMAX_VEND . 'frmx-nice-select/jquery.nice-select.min.js', array('jquery'), '1.0', true);
72
73 $bbpc_brand_color = forumax_get_opt('bbpc_brand_color');
74 if ( ! empty( $bbpc_brand_color ) ) {
75 $dynamic_css = sprintf(
76 ':root { --bbpc_brand_color: %s; }',
77 sanitize_hex_color( $bbpc_brand_color )
78 );
79 wp_add_inline_style( 'bbpc-single', $dynamic_css );
80 }
81
82
83 wp_register_script('bbpc-voting', FORUMAX_FRONT_ASS . 'voting/bbpc-voting.js', ['jquery'], FORUMAX_VERSION);
84 wp_register_script('forumax-custom', FORUMAX_FRONT_ASS . 'js/custom.js', ['jquery'], FORUMAX_VERSION);
85 wp_register_script('bbp-replies-sorting', FORUMAX_FRONT_ASS . 'js/bbp-replies-sorting.js', ['jquery'], FORUMAX_VERSION);
86 wp_register_script('docy-forum', FORUMAX_FRONT_ASS . 'js/forum.js', ['jquery'], FORUMAX_VERSION);
87 wp_register_script('frmx-inline-edit', FORUMAX_FRONT_ASS . 'js/frmx-inline-edit.js', ['jquery'], FORUMAX_VERSION, true);
88
89 wp_enqueue_style('bbpc-single');
90 wp_enqueue_style('bbpc-forum');
91 wp_enqueue_style('bbpc-voting', FORUMAX_FRONT_ASS . 'voting/bbpc-voting.css');
92 wp_enqueue_style('frmx-nice-select');
93
94 wp_enqueue_script('frmx-nice-select');
95 wp_enqueue_script('forumax-custom');
96 wp_enqueue_script('bbp-replies-sorting');
97 wp_enqueue_script('docy-forum');
98 wp_enqueue_script('bbpc-voting');
99 wp_enqueue_script('bbpc-frontend-js');
100
101 // Ensure TinyMCE scripts are queued early on all forumax editor pages
102 if ( bbp_is_single_topic() || bbp_is_single_forum() || bbp_is_reply_edit() || bbp_is_topic_edit() ) {
103 wp_enqueue_editor();
104 }
105
106 // Inline edit — only on single topic pages.
107 if ( bbp_is_single_topic() ) {
108
109 wp_enqueue_script( 'frmx-inline-edit' );
110 wp_localize_script( 'frmx-inline-edit', 'frmxInlineEdit', array(
111 'ajaxurl' => admin_url( 'admin-ajax.php' ),
112 'nonce' => wp_create_nonce( 'forumax-nonce' ),
113 'topic_id' => bbp_get_topic_id(),
114 'i18n' => array(
115 'edit' => esc_html__( 'Edit', 'forumax' ),
116 'save' => esc_html__( 'Save', 'forumax' ),
117 'cancel' => esc_html__( 'Cancel', 'forumax' ),
118 'saving' => esc_html__( 'Saving…', 'forumax' ),
119 'loading' => esc_html__( 'Loading…', 'forumax' ),
120 'title_label' => esc_html__( 'Topic Title', 'forumax' ),
121 'content_label' => esc_html__( 'Topic Content', 'forumax' ),
122 'title_required' => esc_html__( 'Title cannot be empty.', 'forumax' ),
123 'content_required' => esc_html__( 'Content cannot be empty.', 'forumax' ),
124 'error' => esc_html__( 'Something went wrong. Please try again.', 'forumax' ),
125 'editing_reply' => esc_html__( 'Editing reply', 'forumax' ),
126 'to_save' => esc_html__( 'to save', 'forumax' ),
127 'to_cancel' => esc_html__( 'to cancel', 'forumax' ),
128 'unsaved_changes' => esc_html__( 'Unsaved changes', 'forumax' ),
129 'discard_confirm' => esc_html__( 'Discard unsaved changes?', 'forumax' ),
130 'discard' => esc_html__( 'Discard', 'forumax' ),
131 'keep_editing' => esc_html__( 'Keep editing', 'forumax' ),
132 ),
133 ) );
134 }
135
136
137 // User page styles
138 if ( function_exists( 'bbp_is_single_user' ) ) {
139 if ( bbp_is_single_user() || bbp_is_favorites() || bbp_is_subscriptions() || bbp_is_single_user_engagements() || bbp_is_single_user_topics() || bbp_is_single_user_replies() || bbp_is_single_user_edit() || bbp_is_single_user_profile() ) {
140 wp_enqueue_style('bbpc-forum-user', FORUMAX_STYLES . 'frontend/forum-user.css');
141 }
142 }
143
144 if (is_rtl()) {
145 wp_enqueue_style('bbpc-rtl', FORUMAX_STYLES . 'frontend/bbpc-main-rtl.css');
146 }
147 }
148 }
149
150