PluginProbe
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder / 3.3.1
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder v3.3.1
3.3.1 V-3.3.0 3.2.2 3.2.1 3.2.0 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 V3.0.3 V3.0.2 -3.0.1 V_3.0.0 1.1.1 1.1.8 1.2 1.3 1.4 1.4.18 1.5.2 1.9 2.0 2.10.0 2.10.1 All 138 releases
← All changes | includes/Admin/Admin_Bar.php +190 -54 2.10.03.3.1 View file →
@@ -1,8 +1,12 @@
1 1 <?php
2 2
3 3 namespace BitCode\BitForm\Admin;
4 4
5 +if (!defined('ABSPATH')) {
6 + exit;
7 +}
8 +
5 9 /**
6 10 * The admin menu and page handler class
7 11 */
8 12
@@ -7,16 +11,20 @@
7 11 */
8 12
9 13 use BitCode\BitForm\Core\Form\FormHandler;
10 14 use BitCode\BitForm\Core\Integration\IntegrationHandler;
15 +use BitCode\BitForm\Core\Integration\Integrations;
11 16 use BitCode\BitForm\Core\Util\DateTimeHelper;
12 17 use BitCode\BitForm\Core\Util\FileDownloadProvider;
13 18 use BitCode\BitForm\Core\Util\IpTool;
19 +use BitCode\BitForm\Core\Util\Utilities;
20 +use WP_Admin_Bar;
14 21
15 22 class Admin_Bar
16 23 {
17 24 private static $fonts_url = [
18 - 'https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;500;600;700&display=swap&famildy=Roboto:wght@300;400;500&display=swap',
25 + // 'https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;500;600;700&display=swap&family=Roboto:wght@300;400;500&display=swap',
26 + 'https://fonts.googleapis.com/css2?family=DM+Sans:wght@100;200;300;400;500;600;700&display=swap',
19 27 'https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap',
20 28 ];
21 29
22 30 public function register()
@@ -25,8 +33,10 @@
25 33 add_action('admin_menu', [$this, 'AdminMenu']);
26 34 add_action('admin_enqueue_scripts', [$this, 'AdminAssets']);
27 35 add_filter('style_loader_tag', [$this, 'linkTagFilter'], 0, 3);
28 36 add_filter('script_loader_tag', [$this, 'scriptTagFilter'], 0, 3);
37 + add_action('admin_bar_menu', [$this, 'AdminTopMenu'], 999);
38 + add_action('admin_enqueue_scripts', [$this, 'bitforms_enqueue_admin_styles']);
29 39 }
30 40
31 41 /**
32 42 * Register the admin menu
@@ -37,11 +47,12 @@
37 47 {
38 48 global $submenu;
39 49
40 50 $capability = apply_filters('bitforms_form_access_capability', 'manage_options');
51 + $menuTitle = Utilities::isProLicensed() ? 'Bit Form Pro' : 'Bit Form';
41 52 add_menu_page(
42 - __('Bit Form - Most advanced form builder and database management system', 'bit-form'),
43 - 'Bit Form',
53 + __('Bit Form - Most advanced form builder and entries management plugin', 'bit-form'),
54 + $menuTitle,
44 55 $capability,
45 56 'bitform',
46 57 [$this, 'RootPage'],
47 58 'data:image/svg+xml;base64,' . base64_encode('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 163 163"><path fill="#fff" d="M106 0H57A57 57 0 000 57v49a57 57 0 0057 57h49a57 57 0 0057-57V57a57 57 0 00-57-57zM51 60v3l-1 59v12c0 5-3 8-8 6-2-1-3-4-3-6v-21-55a29 29 0 011-4 5 5 0 015-4h33a4 4 0 004-2c2-3 8-2 10-1a9 9 0 015 9 9 9 0 01-7 8c-3 1-6 0-9-3a3 3 0 00-1-1H51zm73 74c-6 5-12 6-20 6H72a8 8 0 01-4-1 5 5 0 01-2-6 5 5 0 015-3h35c11-1 20-10 21-20 0-11-8-20-18-23a6 6 0 00-1 0H78h-1v14l1 2h18a4 4 0 003-1c4-4 8-3 11-1 4 2 5 7 3 12-2 4-9 6-13 2a6 6 0 00-5-1H71c-3 0-5-2-5-6V82c0-4 1-5 5-6h17a21 21 0 0021-24c-1-9-8-16-16-18a25 25 0 00-6 0H46c-4 0-7-3-7-6s3-5 7-5h42a33 33 0 0132 23c2 11 0 20-6 29l-1 2 5 2c11 4 17 12 19 23 3 12-2 24-13 32z"/></svg>'),
@@ -47,16 +58,97 @@
47 58 'data:image/svg+xml;base64,' . base64_encode('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 163 163"><path fill="#fff" d="M106 0H57A57 57 0 000 57v49a57 57 0 0057 57h49a57 57 0 0057-57V57a57 57 0 00-57-57zM51 60v3l-1 59v12c0 5-3 8-8 6-2-1-3-4-3-6v-21-55a29 29 0 011-4 5 5 0 015-4h33a4 4 0 004-2c2-3 8-2 10-1a9 9 0 015 9 9 9 0 01-7 8c-3 1-6 0-9-3a3 3 0 00-1-1H51zm73 74c-6 5-12 6-20 6H72a8 8 0 01-4-1 5 5 0 01-2-6 5 5 0 015-3h35c11-1 20-10 21-20 0-11-8-20-18-23a6 6 0 00-1 0H78h-1v14l1 2h18a4 4 0 003-1c4-4 8-3 11-1 4 2 5 7 3 12-2 4-9 6-13 2a6 6 0 00-5-1H71c-3 0-5-2-5-6V82c0-4 1-5 5-6h17a21 21 0 0021-24c-1-9-8-16-16-18a25 25 0 00-6 0H46c-4 0-7-3-7-6s3-5 7-5h42a33 33 0 0132 23c2 11 0 20-6 29l-1 2 5 2c11 4 17 12 19 23 3 12-2 24-13 32z"/></svg>'),
48 59 56
49 60 );
50 61 if (current_user_can($capability)) {
51 - $submenu['bitform'][] = [__('All Forms', 'bit-form'), $capability, 'admin.php?page=bitform#/'];
52 - $submenu['bitform'][] = [__('App Settings', 'bit-form'), $capability, 'admin.php?page=bitform#/app-settings/recaptcha'];
62 + $entriesCount = '';
63 + // if (self::countUnreadEntries()) {
64 + // $entriesCount = ' <span class="update-plugins">' . self::countUnreadEntries() . '</span>';
65 + // }
66 +
67 + $submenu['bitform'][] = [__('All Forms', 'bit-form') . $entriesCount, $capability, 'admin.php?page=bitform#/'];
68 + $submenu['bitform'][] = [__('Form Templates', 'bit-form') . '<span class="bf-template-new-badge">New</span>', $capability, 'admin.php?page=bitform#/form-templates'];
69 + $submenu['bitform'][] = [__('App Settings', 'bit-form'), $capability, 'admin.php?page=bitform#/app-settings/general'];
70 + $submenu['bitform'][] = [__('Integrations', 'bit-form'), $capability, 'admin.php?page=bitform#/app-settings/integrations'];
53 71 $submenu['bitform'][] = [__('SMTP', 'bit-form'), $capability, 'admin.php?page=bitform#/app-settings/smtp'];
72 + $submenu['bitform'][] = [__('PDF Setting', 'bit-form'), $capability, 'admin.php?page=bitform#/app-settings/pdf'];
73 + $submenu['bitform'][] = [__('CPT', 'bit-form'), $capability, 'admin.php?page=bitform#/app-settings/cpt'];
74 + $submenu['bitform'][] = [__('Bit Form API', 'bit-form'), $capability, 'admin.php?page=bitform#/app-settings/api'];
54 75 $submenu['bitform'][] = [__('Payments', 'bit-form'), $capability, 'admin.php?page=bitform#/app-settings/payments'];
55 76 $submenu['bitform'][] = [__('Doc & Support', 'bit-form'), $capability, 'admin.php?page=bitform#/doc-support'];
77 + if (!Utilities::isPro()) {
78 + $submenu['bitform'][] = ['<span class="bf-pro-btn">' . __('Get 74% OFF', 'bit-form') . '</span>', $capability, 'https://bit-form.com/#pricing', '_blank'];
79 + }
56 80 }
57 81 }
58 82
83 + public function AdminTopMenu(WP_Admin_Bar $wp_admin_bar)
84 + {
85 + if (!(current_user_can('manage_options') || current_user_can('manage_bitform'))) {
86 + return;
87 + }
88 + $indicator = '';
89 + // if (self::countUnreadEntries()) {
90 + // $indicator = ' <div class="wp-core-ui wp-ui-notification bf-indicator-badge">' . self::countUnreadEntries() . '</div>';
91 + // }
92 +
93 + $wp_admin_bar->add_node([
94 + 'id' => 'bitform',
95 + 'title' => 'Bit Form' . $indicator,
96 + 'href' => admin_url('admin.php?page=bitform'),
97 + 'meta' => [
98 + 'class' => 'bitform-admin-bar',
99 + ],
100 + ]);
101 + $wp_admin_bar->add_node([
102 + 'id' => 'bitform-all-forms',
103 + 'parent' => 'bitform',
104 + 'title' => __('All Forms', 'bit-form') . $indicator,
105 + 'href' => admin_url('admin.php?page=bitform#/'),
106 + ]);
107 + $wp_admin_bar->add_node([
108 + 'id' => 'bitform-form-templates',
109 + 'parent' => 'bitform',
110 + 'title' => __('Form Templates', 'bit-form'),
111 + 'href' => admin_url('admin.php?page=bitform#/form-templates'),
112 + ]);
113 + $wp_admin_bar->add_node([
114 + 'id' => 'bitform-app-settings',
115 + 'parent' => 'bitform',
116 + 'title' => __('App Settings', 'bit-form'),
117 + 'href' => admin_url('admin.php?page=bitform#/app-settings/general'),
118 + ]);
119 + $wp_admin_bar->add_node([
120 + 'id' => 'bitform-smtp',
121 + 'parent' => 'bitform',
122 + 'title' => __('SMTP', 'bit-form'),
123 + 'href' => admin_url('admin.php?page=bitform#/app-settings/smtp'),
124 + ]);
125 + $wp_admin_bar->add_node([
126 + 'id' => 'bitform-pdf-setting',
127 + 'parent' => 'bitform',
128 + 'title' => __('PDF Setting', 'bit-form'),
129 + 'href' => admin_url('admin.php?page=bitform#/app-settings/pdf'),
130 + ]);
131 + $wp_admin_bar->add_node([
132 + 'id' => 'bitform-cpt',
133 + 'parent' => 'bitform',
134 + 'title' => __('CPT', 'bit-form'),
135 + 'href' => admin_url('admin.php?page=bitform#/app-settings/cpt'),
136 + ]);
137 + $wp_admin_bar->add_node([
138 + 'id' => 'bitform-api',
139 + 'parent' => 'bitform',
140 + 'title' => __('Bit Form API', 'bit-form'),
141 + 'href' => admin_url('admin.php?page=bitform#/app-settings/api'),
142 + ]);
143 + $wp_admin_bar->add_node([
144 + 'id' => 'bitform-payments',
145 + 'parent' => 'bitform',
146 + 'title' => __('Payments', 'bit-form'),
147 + 'href' => admin_url('admin.php?page=bitform#/app-settings/payments'),
148 + ]);
149 + }
150 +
59 151 public function getAllPages()
60 152 {
61 153 $pages = get_pages(['post_status' => 'publish', 'sort_column' => 'post_date', 'sort_order' => 'desc']);
62 154 $allPages = [];
@@ -73,9 +165,9 @@
73 165 * @return void
74 166 */
75 167 public function AdminAssets($current_screen)
76 168 {
77 - if (!strpos($current_screen, 'bitform')) {
169 + if (false === strpos($current_screen, 'bitform')) {
78 170 return;
79 171 }
80 172 $parsed_url = wp_parse_url(get_admin_url());
81 173 $site_url = $parsed_url['scheme'] . '://' . $parsed_url['host'];
@@ -81,15 +173,16 @@
81 173 $site_url = $parsed_url['scheme'] . '://' . $parsed_url['host'];
82 174 $site_url .= empty($parsed_url['port']) ? null : ':' . $parsed_url['port'];
83 175 $base_path_admin = str_replace($site_url, '', get_admin_url());
84 176 // loading google fonts
85 - wp_enqueue_style('googleapis-BITFORM-PRECONNECT', 'https://fonts.googleapis.com');
86 - wp_enqueue_style('gstatic-BITFORM-PRECONNECT-CROSSORIGIN', 'https://fonts.gstatic.com');
177 + wp_enqueue_style('googleapis-BITFORM-PRECONNECT', 'https://fonts.googleapis.com', [], BITFORMS_VERSION, false);
178 + wp_enqueue_style('gstatic-BITFORM-PRECONNECT-CROSSORIGIN', 'https://fonts.gstatic.com', [], BITFORMS_VERSION, false);
87 179 foreach (self::$fonts_url as $i => $font_url) {
88 - wp_enqueue_style('bf-font-' . $i, $font_url);
180 + wp_enqueue_style('bf-font-' . $i, $font_url, [], BITFORMS_VERSION);
89 181 }
90 182
91 183 if (defined('BITAPPS_DEV') && BITAPPS_DEV) {
184 + // Vite dev server scripts; null version intentional (dev mode, no cache busting needed).
92 185 wp_enqueue_script('vite-client-helper-BITFORM-MODULE', BIT_DEV_URL . '/config/devHotModule.js', [], null);
93 186 wp_enqueue_script('vite-client-BITFORM-MODULE', BIT_DEV_URL . '/@vite/client', [], null);
94 187 wp_enqueue_script('index-BITFORM-MODULE', BIT_DEV_URL . '/main.jsx', [], null);
95 188 }
@@ -96,9 +189,9 @@
96 189
97 190 if (!defined('BITAPPS_DEV') || (defined('BITAPPS_DEV') && !BITAPPS_DEV)) {
98 191 $build_hash = file_get_contents(BITFORMS_PLUGIN_DIR_PATH . '/build-hash.txt');
99 192 wp_enqueue_script('index-BITFORM-MODULE', BITFORMS_ASSET_URI . "/main-{$build_hash}.js", [], null);
100 - wp_enqueue_style('bf-css', BITFORMS_ASSET_URI . "/main-{$build_hash}.css");
193 + wp_enqueue_style('bf-css', BITFORMS_ASSET_URI . "/main-{$build_hash}.css", [], $build_hash);
101 194 }
102 195
103 196 // if (defined('BITAPPS_DEV') && BITAPPS_DEV) {
104 197 // wp_enqueue_script(
@@ -123,49 +216,52 @@
123 216 // true
124 217 // );
125 218 // }
126 219
127 - if (wp_script_is('wp-i18n')) {
128 - $deps = ['bitforms-vendors', 'bitforms-runtime', 'bitforms-file', 'wp-i18n'];
129 - } else {
130 - $deps = ['bitforms-vendors', 'bitforms-runtime', 'bitforms-file'];
131 - }
132 - if (!defined('BITAPPS_DEV')) {
133 - wp_enqueue_script(
134 - 'bitforms-admin-script',
135 - BITFORMS_ASSET_JS_URI . '/index.js',
136 - $deps,
137 - BITFORMS_VERSION,
138 - true
139 - );
140 - }
141 - wp_enqueue_script('tinymce_js', includes_url('js/tinymce/') . 'wp-tinymce.php', null, false, true);
220 + // if (wp_script_is('wp-i18n')) {
221 + // error_log('wp_script' . wp_script_is('wp-i18n'));
222 + // $deps = ['bitforms-vendors', 'bitforms-runtime', 'bitforms-file', 'wp-i18n'];
223 + // } else {
224 + // $deps = ['bitforms-vendors', 'bitforms-runtime', 'bitforms-file'];
225 + // }
226 + // if (!defined('BITAPPS_DEV')) {
227 + // wp_enqueue_script(
228 + // 'bitforms-admin-script',
229 + // BITFORMS_ASSET_JS_URI . '/index.js',
230 + // $deps,
231 + // BITFORMS_VERSION,
232 + // true
233 + // );
234 + // }
142 235
236 + wp_enqueue_script('tinymce_js', includes_url('js/tinymce/') . 'wp-tinymce.php', [], get_bloginfo('version'), true);
237 +
143 238 if (!wp_script_is('media-upload')) {
144 239 wp_enqueue_media();
145 240 }
146 241
147 - $plugin_path = BITFORMS_ASSET_URI;
242 + // $plugin_path = BITFORMS_ASSET_URI;
148 243
149 244 echo "<meta name='theme-color' content='#13233c' />";
150 245
151 - if (defined('BITAPPS_DEV') && !BITAPPS_DEV) {
152 - wp_enqueue_style(
153 - 'bitforms-styles',
154 - BITFORMS_ASSET_URI . '/css/bitforms.css',
155 - null,
156 - BITFORMS_VERSION,
157 - 'screen'
158 - );
246 + // if (defined('BITAPPS_DEV') && !BITAPPS_DEV) {
247 + // wp_enqueue_style(
248 + // 'bitforms-styles',
249 + // BITFORMS_ASSET_URI . '/css/bitforms.css',
250 + // null,
251 + // BITFORMS_VERSION,
252 + // 'screen'
253 + // );
159 254
160 - wp_enqueue_style(
161 - 'bitforms-components-styles',
162 - BITFORMS_ASSET_URI . '/css/components.css',
163 - null,
164 - BITFORMS_VERSION,
165 - 'screen'
166 - );
167 - }
255 + // wp_enqueue_style(
256 + // 'bitforms-components-styles',
257 + // BITFORMS_ASSET_URI . '/css/components.css',
258 + // null,
259 + // BITFORMS_VERSION,
260 + // 'screen'
261 + // );
262 + // }
263 +
168 264 $formHandler = FormHandler::getInstance();
169 265 $all_forms = $formHandler->admin->getAllForm();
170 266 $urlQuery = wp_parse_url(FileDownloadProvider::getBaseDownloadURL(), PHP_URL_QUERY);
171 267 $baseDLURL = FileDownloadProvider::getBaseDownloadURL();
@@ -173,8 +269,12 @@
173 269 $ipTool = new IpTool();
174 270 $user_details = $ipTool->getUserDetail();
175 271 $integrationHandler = new IntegrationHandler(0, $user_details);
176 272 $allFormIntegrations = $integrationHandler->getAllIntegration('app');
273 +
274 + $integraions = Integrations::getInstance();
275 + $connectedIntegrationApps = $integraions->getConnectedIntegrationApp();
276 +
177 277 $allFormSettings = [];
178 278 if (!is_wp_error($allFormIntegrations)) {
179 279 $integCount = [];
180 280 foreach ($allFormIntegrations as $integration) {
@@ -190,8 +290,12 @@
190 290 foreach ($allFormIntegrations as $integration) {
191 291 $type = $integration->integration_type;
192 292 if (!is_null($type)) {
193 293 $integrationDetails = json_decode($integration->integration_details);
294 +
295 + if (!is_object($integrationDetails) || is_null($integrationDetails)) {
296 + $integrationDetails = new \stdClass();
297 + }
194 298 $integrationDetails->id = $integration->id;
195 299 if ($integCount[$type] > 1) {
196 300 if (!isset($allFormSettings[$type])) {
197 301 $allFormSettings[$type] = [];
@@ -203,22 +307,19 @@
203 307 }
204 308 }
205 309 }
206 310
207 - $users = get_users(['fields' => ['ID', 'user_nicename', 'user_email', 'display_name']]);
208 - $userMail = [];
209 - $userNames = [];
210 - foreach ($users as $key => $value) {
211 - $userMail[$key]['label'] = !empty($value->display_name) ? $value->display_name : '';
212 - $userMail[$key]['value'] = !empty($value->user_email) ? $value->user_email : '';
213 - $userMail[$key]['id'] = $value->ID;
214 - $userNames[$value->ID] = ['name' => $value->display_name, 'url' => get_edit_user_link($value->ID)];
311 + if (!is_wp_error($connectedIntegrationApps)) {
312 + $allFormSettings['connectedIntegrationApps'] = $connectedIntegrationApps;
215 313 }
314 +
315 + $appSettings = get_option('bitform_app_settings', (object)[]);
216 316 $bits = [
217 317 'configs' => ['bf_separator' => BITFORMS_BF_SEPARATOR],
218 318 'nonce' => wp_create_nonce('bitforms_save'),
219 319 'isPro' => false,
220 320 'siteURL' => site_url(),
321 + 'rootURL' => BITFORMS_ROOT_URI,
221 322 'assetsURL' => BITFORMS_ASSET_URI,
222 323 'baseURL' => $base_path_admin . 'admin.php?page=bitform#',
223 324 'baseDLURL' => $baseDLURL,
224 325 'styleURL' => BITFORMS_UPLOAD_BASE_URL . '/form-styles',
@@ -226,10 +327,9 @@
226 327 'ajaxURL' => admin_url('admin-ajax.php'),
227 328 'allForms' => is_wp_error($all_forms) ? null : $all_forms,
228 329 'allPages' => is_wp_error($this->getAllPages()) ? [] : $this->getAllPages(),
229 330 'allFormSettings' => count($allFormSettings) > 0 ? $allFormSettings : (object)[],
230 - 'userMail' => !empty($userMail) ? $userMail : [],
231 - 'user' => (object) $userNames,
331 + 'appSettings' => $appSettings,
232 332 'dateFormat' => get_option('date_format'),
233 333 'timeFormat' => get_option('time_format'),
234 334 'timeZone' => DateTimeHelper::wp_timezone_string(),
235 335 'googleRedirectURL' => get_rest_url() . 'bitform/v1/google',
@@ -234,8 +334,13 @@
234 334 'timeZone' => DateTimeHelper::wp_timezone_string(),
235 335 'googleRedirectURL' => get_rest_url() . 'bitform/v1/google',
236 336 'oneDriveRedirectURL' => get_rest_url() . 'bitform/v1/oneDrive',
237 337 'zohoRedirectURL' => get_rest_url() . 'bitform/v1/zoho',
338 + 'oAuthRedirectURL' => get_rest_url() . 'bitform/v1/oauth-redirect',
339 + 'downloadedPdfFonts' => is_array(get_option('bitforms_pdf_fonts')) ? get_option('bitforms_pdf_fonts') : [],
340 + 'permission' => empty(get_option('bitforms_allow_tracking')) ? false : true,
341 + 'templatePath' => BITFORMS_ROOT_URI . '/static/templates',
342 + 'serverInfo' => ['php_version' => phpversion(), 'engine' => isset($_SERVER['SERVER_SOFTWARE']) ? sanitize_text_field(wp_unslash($_SERVER['SERVER_SOFTWARE'])) : '', 'wp_version' => get_bloginfo('version'), 'loaded_extensions' => get_loaded_extensions()],
238 343 ];
239 344
240 345 $isMigratingToV2 = get_option('bitforms_migrating_to_v2', false);
241 346 if ($isMigratingToV2) {
@@ -248,9 +353,16 @@
248 353
249 354 $changelogVersion = get_option('bitforms_changelog_version', '0.0.0');
250 355 $bits['changelogVersion'] = $changelogVersion;
251 356
357 + $hideAnnouncementModal = (bool) get_option('bitforms_hide_announcement', false);
358 + $bits['hideAnnouncementModal'] = $hideAnnouncementModal;
359 +
360 + $hideCashbackModal = (bool) get_option('bitforms_hide_cashback', false);
361 + $bits['hideCashbackModal'] = $hideCashbackModal;
362 +
252 363 global $wpdb;
364 + // Direct query: table name interpolation only (no user input). $wpdb->prepare() cannot parameterize schema-check queries.
253 365 $hasV1FormTable = $wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}bitforms_form_v1'");
254 366 if ($hasV1FormTable) {
255 367 $bits['canRollbackToV1'] = true;
256 368 }
@@ -258,11 +370,16 @@
258 370 $bitforms = apply_filters(
259 371 'bitforms_localized_script',
260 372 $bits
261 373 );
262 - if ('en_US' !== get_locale() && file_exists(BITFORMS_PLUGIN_DIR_PATH . '/languages/generatedString.php')) {
374 +
375 + $allowBitFormTranslation = apply_filters('bitform_filter_allow_translation', true);
376 + if ($allowBitFormTranslation && 'en_US' !== get_user_locale() && file_exists(BITFORMS_PLUGIN_DIR_PATH . '/languages/generatedString.php')) {
263 377 include_once BITFORMS_PLUGIN_DIR_PATH . '/languages/generatedString.php';
264 - $bitforms['translations'] = $i18n_strings;
378 + $bitforms['translations'] = $bitforms_i18n_strings;
379 +
380 + // Apply a filter to allow user/custom translations to modify the $bitforms translations
381 + $bitforms['translations'] = apply_filters('bitform_filter_translations', $bitforms['translations']);
265 382 }
266 383 wp_localize_script('index-BITFORM-MODULE', 'bits', $bitforms);
267 384 // !BIT_DEV && wp_localize_script('bitforms-admin-script', 'bits', $bitforms);
268 385 // echo !BIT_DEV ? '' : "<script>console.log(window.bits=JSON.parse('" . str_replace("'", '', wp_json_encode($bitforms)) . "'))</script>";
@@ -269,8 +386,19 @@
269 386 // if (\function_exists('wp_set_script_translations'))
270 387 // wp_set_script_translations('bitforms-admin-script', 'bitform', BITFORMS_PLUGIN_DIR_PATH . 'languages');
271 388 }
272 389
390 + public function bitforms_enqueue_admin_styles()
391 + {
392 + wp_enqueue_style(
393 + 'bitforms-admin-styles',
394 + BITFORMS_ROOT_URI . '/resources/admin.css',
395 + [],
396 + BITFORMS_VERSION,
397 + 'all'
398 + );
399 + }
400 +
273 401 /**
274 402 * Bitforms apps-root id provider
275 403 * @return void
276 404 */
@@ -328,6 +456,14 @@
328 456 if (preg_match('/BITFORM-MODULE/', $handle)) {
329 457 $newTag = preg_replace('/<script /', '<script type="module" ', $newTag);
330 458 }
331 459 return $newTag;
460 + }
461 +
462 + private static function countUnreadEntries()
463 + {
464 + global $wpdb;
465 + // Direct query: table name interpolation only (no user input). status = 1 is a hardcoded literal.
466 + $unreadEntries = $wpdb->get_var("SELECT COUNT(*) FROM {$wpdb->prefix}bitforms_form_entries WHERE status = 1");
467 + return $unreadEntries;
332 468 }
333 469 }