helpers.php
31.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
<?php
function et_fb_shortcode_tags() {
global $shortcode_tags;
$shortcode_tag_names = array();
foreach ( $shortcode_tags as $shortcode_tag_name => $shortcode_tag_cb ) {
$shortcode_tag_names[] = $shortcode_tag_name;
}
return implode( '|', $shortcode_tag_names );
}
function et_fb_prepare_library_cats() {
$raw_categories_array = apply_filters( 'et_pb_new_layout_cats_array', get_terms( 'layout_category', array( 'hide_empty' => false ) ) );
$clean_categories_array = array();
if ( is_array( $raw_categories_array ) && ! empty( $raw_categories_array ) ) {
foreach( $raw_categories_array as $category ) {
$clean_categories_array[] = array(
'name' => html_entity_decode( $category->name ),
'id' => $category->term_id,
'slug' => $category->slug,
);
}
}
return $clean_categories_array;
}
function et_fb_get_layout_type( $post_id ) {
$post_terms = wp_get_post_terms( $post_id, 'layout_type' );
$layout_type = $post_terms[0]->slug;
return $layout_type;
}
function et_fb_comments_template() {
return ET_BUILDER_DIR . 'comments_template.php';
}
function et_fb_modify_comments_request( $params ) {
// modify the request parameters the way it doesn't change the result just to make request with unique parameters
$params->query_vars['type__not_in'] = 'et_pb_comments_random_type_9999';
}
function et_fb_comments_submit_button( $submit_button ) {
return sprintf(
'<button name="%1$s" type="submit" id="%2$s" class="%3$s">%4$s</button>',
esc_attr( 'submit' ),
esc_attr( 'et_pb_submit' ),
esc_attr( 'submit et_pb_button' ),
esc_html_x( 'Submit Comment', 'et_builder' )
);
}
// comments template cannot be generated via AJAX so prepare it beforehand
function et_fb_get_comments_markup() {
// Modify the comments request to make sure it's unique.
// Otherwise WP generates SQL error and doesn't allow multiple comments sections on single page
add_action( 'pre_get_comments', 'et_fb_modify_comments_request', 1 );
// include custom comments_template to display the comment section with Divi style
add_filter( 'comments_template', 'et_fb_comments_template' );
// Modify submit button to be advanced button style ready
add_filter( 'comment_form_submit_button', 'et_fb_comments_submit_button' );
ob_start();
comments_template( '', true );
$comments_content = ob_get_contents();
ob_end_clean();
// remove all the actions and filters to not break the default comments section from theme
remove_filter( 'comments_template', 'et_fb_comments_template' );
remove_action( 'pre_get_comments', 'et_fb_modify_comments_request', 1 );
return $comments_content;
}
// List of shortcode wrappers that requires adjustment in VB. Plugins which uses fullscreen dimension
// tend to apply negative positioning which looks inappropriate on VB's shortcode mechanism
function et_fb_known_shortcode_wrappers() {
return apply_filters( 'et_fb_known_shortcode_wrappers', array(
'removeLeft' => array(
'.fullscreen-container', // revolution slider,
'.esg-container-fullscreen-forcer', // essential grid
'.ls-wp-fullwidth-helper', // layer slider
),
) );
}
function et_builder_autosave_interval() {
return apply_filters( 'et_builder_autosave_interval', et_builder_heartbeat_interval() / 2 );
}
function et_fb_heartbeat_settings($settings) {
$settings['suspension'] = 'disable';
$settings['interval'] = et_builder_heartbeat_interval();
return $settings;
}
add_filter( 'heartbeat_settings', 'et_fb_heartbeat_settings', 11 );
function et_fb_backend_helpers() {
global $post, $paged, $wp_query;
$layout_type = '';
$post_type = isset( $post->post_type ) ? $post->post_type : false;
$post_id = isset( $post->ID ) ? $post->ID : false;
$post_status = isset( $post->post_status ) ? $post->post_status : false;
$post_title = isset( $post->post_title ) ? esc_attr( $post->post_title ) : false;
if ( 'et_pb_layout' === $post_type ) {
$layout_type = et_fb_get_layout_type( $post_id );
}
$google_fonts = array_merge( array( 'Default' => array() ), et_builder_get_google_fonts() );
$current_user = wp_get_current_user();
$current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$fb_modules_array = apply_filters( 'et_fb_modules_array', ET_Builder_Element::get_modules_array( $post_type, true, true ) );
$helpers = array(
'debug' => true,
'autosaveInterval' => et_builder_autosave_interval(),
'postId' => $post_id,
'postTitle' => $post_title,
'postStatus' => $post_status,
'postType' => $post_type,
'layoutType' => $layout_type,
'publishCapability' => ( is_page() && ! current_user_can( 'publish_pages' ) ) || ( ! is_page() && ! current_user_can( 'publish_posts' ) ) ? 'no_publish' : 'publish',
'shortcodeObject' => array(),
'autosaveShortcodeObject' => array(),
'ajaxUrl' => admin_url( 'admin-ajax.php' ),
'tinymceSkinUrl' => ET_FB_ASSETS_URI . '/vendors/tinymce-skin',
'tinymceCSSFiles' => esc_url( includes_url( 'js/tinymce' ) . '/skins/wordpress/wp-content.css' ),
'images_uri' => ET_BUILDER_URI .'/images',
'componentDefinitions' => array(
'generalFields' => array(),
'advancedFields' => array(),
'customCssFields' => array(),
'fieldsDefaults' => array(),
'defaults' => array(),
),
'moduleParentShortcodes' => ET_Builder_Element::get_parent_shortcodes( $post_type ),
'moduleChildShortcodes' => ET_Builder_Element::get_child_shortcodes( $post_type ),
'moduleChildSlugs' => ET_Builder_Element::get_child_slugs( $post_type ),
'moduleRawContentShortcodes' => ET_Builder_Element::get_raw_content_shortcodes( $post_type ),
'modules' => $fb_modules_array,
'modulesCount' => count( $fb_modules_array ),
'modulesWithChildren' => ET_Builder_Element::get_shortcodes_with_children( $post_type ),
'modulesShowOnCancelDropClassname' => apply_filters( 'et_fb_modules_show_on_cancel_drop_classname', array( 'et_pb_gallery', 'et_pb_filterable_portfolio') ),
'structureModules' => ET_Builder_Element::get_structure_modules( $post_type ),
'et_builder_css_media_queries' => ET_Builder_Element::get_media_quries( 'for_js' ),
'builderOptions' => et_builder_options(),
'commentsModuleMarkup' => et_fb_get_comments_markup(),
'shortcode_tags' => et_fb_shortcode_tags(),
'getFontIconSymbols' => et_pb_get_font_icon_symbols(),
'failureNotification' => et_builder_get_failure_notification_modal(),
'exitNotification' => et_builder_get_exit_notification_modal(),
'browserAutosaveNotification' => et_builder_get_browser_autosave_notification_modal(),
'serverAutosaveNotification' => et_builder_get_server_autosave_notification_modal(),
'unsavedNotification' => et_builder_get_unsaved_notification_modal(),
'backupLabel' => __( 'Backup of %s', 'et_builder' ),
'getTaxonomies' => apply_filters( 'et_fb_taxonomies', array(
'category' => get_categories(),
'project_category' => get_categories( array( 'taxonomy' => 'project_category' ) ),
'product_category' => class_exists( 'WooCommerce' ) ? get_terms( 'product_cat' ) : '',
) ),
'googleAPIKey' => et_pb_is_allowed( 'theme_options' ) ? get_option( 'et_google_api_settings' ) : '',
'googleFontsList' => array_keys( $google_fonts ),
'googleFonts' => $google_fonts,
'gutterWidth' => et_get_option( 'gutter_width', 3 ),
'fontIcons' => et_pb_get_font_icon_symbols(),
'fontIconsDown' => et_pb_get_font_down_icon_symbols(),
'widgetAreas' => et_builder_get_widget_areas_list(),
'site_url' => get_site_url(),
'cookie_path' => SITECOOKIEPATH,
'blog_id' => get_current_blog_id(),
'etBuilderAccentColor' => et_builder_accent_color(),
'gmt_offset_string' => et_pb_get_gmt_offset_string(),
'et_builder_fonts_data' => et_builder_get_fonts(),
'currentUserDisplayName' => $current_user->display_name,
'locale' => get_locale(),
'roleSettings' => et_pb_get_role_settings(),
'currentRole' => et_pb_get_current_user_role(),
'exportUrl' => et_fb_get_portability_export_url(),
'urls' => array(
'loginFormUrl' => esc_url( site_url( 'wp-login.php', 'login_post' ) ),
'forgotPasswordUrl' => esc_url( wp_lostpassword_url() ),
'logoutUrl' => esc_url( wp_logout_url() ),
'logoutUrlRedirect' => esc_url( wp_logout_url( $current_url ) ),
'themeOptionsUrl' => esc_url( et_pb_get_options_page_link() ),
'builderPreviewStyle' => ET_BUILDER_URI . '/styles/preview.css',
),
'nonces' => et_fb_get_nonces(),
'conditionalTags' => et_fb_conditional_tag_params(),
'currentPage' => et_fb_current_page_params(),
'appPreferences' => et_fb_app_preferences(),
'classNames' => array(
'hide_on_mobile_class' => 'et-hide-mobile',
),
'columnLayouts' => et_builder_get_columns(),
'pageSettingsFields' => et_pb_get_builder_settings_configurations(),
'pageSettingsValues' => et_pb_get_builder_settings_values(),
'splitTestSubjects' => false !== ( $all_subjects_raw = get_post_meta( $post_id, '_et_pb_ab_subjects' , true ) ) ? explode( ',', $all_subjects_raw ) : array(),
'defaults' => array(
'contactFormInputs' => array(),
),
'saveModuleLibraryCategories' => et_fb_prepare_library_cats(),
'columnSettingFields' => array(
'advanced' => array(
'bg_img_%s' => array(
'label' => esc_html__( 'Column %s Background Image', 'et_builder' ),
'type' => 'upload',
'option_category' => 'basic_option',
'upload_button_text' => esc_attr__( 'Upload an image', 'et_builder' ),
'choose_text' => esc_attr__( 'Choose a Background Image', 'et_builder' ),
'update_text' => esc_attr__( 'Set As Background', 'et_builder' ),
'description' => esc_html__( 'If defined, this image will be used as the background for this module. To remove a background image, simply delete the URL from the settings field.', 'et_builder' ),
'tab_slug' => 'advanced',
),
'parallax_%s' => array(
'label' => esc_html__( 'Column %s Parallax Effect', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'configuration',
'options' => array(
'on' => esc_html__( 'Yes', 'et_builder' ),
'off' => esc_html__( 'No', 'et_builder' ),
),
'affects' => array(
'parallax_method_%s',
),
'description' => esc_html__( 'Here you can choose whether or not use parallax effect for the featured image', 'et_builder' ),
'tab_slug' => 'advanced',
),
'parallax_method_%s' => array(
'label' => esc_html__( 'Column %s Parallax Method', 'et_builder' ),
'type' => 'select',
'option_category' => 'configuration',
'options' => array(
'off' => esc_html__( 'CSS', 'et_builder' ),
'on' => esc_html__( 'True Parallax', 'et_builder' ),
),
'depends_show_if' => 'on',
'depends_to' => array(
'parallax_%s',
),
'description' => esc_html__( 'Here you can choose which parallax method to use for the featured image', 'et_builder' ),
'tab_slug' => 'advanced',
),
'background_color_%s' => array(
'label' => esc_html__( 'Column %s Background Color', 'et_builder' ),
'type' => 'color-alpha',
'custom_color' => true,
'tab_slug' => 'advanced',
),
'padding_%s' => array(
'label' => esc_html__( 'Column %s Custom Padding', 'et_builder' ),
'type' => 'custom_padding',
'mobile_options' => true,
'option_category' => 'layout',
'description' => esc_html__( 'Adjust padding to specific values, or leave blank to use the default padding.', 'et_builder' ),
'tab_slug' => 'advanced',
),
),
'css' => array(
'module_id_%s' => array(
'label' => esc_html__( 'Column %s CSS ID', 'et_builder' ),
'type' => 'text',
'option_category' => 'configuration',
'tab_slug' => 'custom_css',
'option_class' => 'et_pb_custom_css_regular',
),
'module_class_%s' => array(
'label' => esc_html__( 'Column %s CSS Class', 'et_builder' ),
'type' => 'text',
'option_category' => 'configuration',
'tab_slug' => 'custom_css',
'option_class' => 'et_pb_custom_css_regular',
),
'custom_css_before_%s'=> array(
'label' => esc_html__( 'Column %s before', 'et_builder' ),
'no_space_before_selector' => true,
'selector' => ':before',
),
'custom_css_main_%s' => array(
'label' => esc_html__( 'Column %s Main Element', 'et_builder' ),
),
'custom_css_after_%s' => array(
'label' => esc_html__( 'Column %s After', 'et_builder' ),
'no_space_before_selector' => true,
'selector' => ':after',
),
),
),
'knownShortcodeWrappers' => et_fb_known_shortcode_wrappers(),
'customizer' => array(
'tablet' => array(
'sectionHeight' => et_get_option( 'tablet_section_height' ),
),
'phone' => array(
'sectionHeight' => et_get_option( 'phone_section_height' ),
),
),
);
// Internationalization.
$helpers['i18n'] = array(
'modules' => array(
'audio' => array(
'meta' => _x( 'by <strong>%1$s</strong>', 'Audio Module meta information', 'et_builder' ),
),
'contactForm' => array(
'thankYou' => esc_html__( 'Thanks for contacting us', 'et_builder' ),
'submit' => esc_attr__( 'Submit', 'et_builder' ),
),
'countdownTimer' => array(
'dayFull' => esc_html__( 'Day(s)', 'et_builder' ),
'dayShort' => esc_html__( 'Day', 'et_builder' ),
'hourFull' => esc_html__( 'Hour(s)', 'et_builder' ),
'hourShort' => esc_html__( 'Hrs', 'et_builder' ),
'minuteFull' => esc_html__( 'Minute(s)', 'et_builder' ),
'minuteShort' => esc_html__( 'Min', 'et_builder' ),
'secondFull' => esc_html__( 'Second(s)', 'et_builder' ),
'secondShort' => esc_html__( 'Sec', 'et_builder' ),
),
'signup' => array(
'emailAddress' => esc_attr__( 'Email Address', 'et_builder' ),
'firstName' => esc_attr__( 'First Name', 'et_builder' ),
'lastName' => esc_attr__( 'Last Name', 'et_builder' ),
'name' => esc_attr__( 'Name', 'et_builder' ),
'email' => esc_attr__( 'Email', 'et_builder' ),
),
'filterablePortfolio' => array(
'all' => esc_html__( 'All', 'et_builder' ),
),
'login' => array(
'loginAs' => sprintf( esc_html__( 'Login as %s', 'et_builder' ), $current_user->display_name ),
'login' => esc_html__( 'Login', 'et_builder' ),
'logout' => esc_html__( 'Log out', 'et_builder' ),
'forgotPassword' => esc_html__( 'Forgot your password?', 'et_builder' ),
'username' => esc_html__( 'Username', 'et_builder' ),
'password' => esc_html__( 'Password', 'et_builder' ),
'note_autofill' => esc_attr__( 'Note: this field is used to disable browser autofill during the form editing in VB', 'et_builder' ),
),
'search' => array(
'submitButtonText' => esc_html__( 'Search', 'et_builder' ),
'searchfor' => esc_html__( 'Search for:', 'et_builder' ),
),
'fullwidthPostSlider' => array(
'by' => esc_html( 'by ', 'et_builder' ),
),
'socialFollow' => array(
'follow' => esc_html( 'Follow', 'et_builder' ),
),
),
'saveButtonText' => esc_attr__( 'Save', 'et_builder' ),
'saveDraftButtonText' => esc_attr__( 'Save Draft', 'et_builder' ),
'publishButtonText' => ( is_page() && ! current_user_can( 'publish_pages' ) ) || ( ! is_page() && ! current_user_can( 'publish_posts' ) ) ? esc_attr__( 'Submit', 'et_builder' ) : esc_attr__( 'Publish', 'et_builder' ),
'controls' => array(
'tinymce' => array(
'visual' => esc_html__( 'Visual', 'et_builder' ),
'text' => esc_html__( 'Text', 'et_builder' ),
),
'moduleItem' => array(
'addNew' => esc_html__( 'Add New Item', 'et_builder' ),
),
'upload' => array(
'buttonText' => esc_html__( 'Upload', 'et_builder' ),
),
'insertMedia' => array(
'buttonText' => esc_html__( 'Add Media', 'et_builder' ),
'modalTitleText' => esc_html__( 'Insert Media', 'et_builder' ),
),
'inputMargin' => array(
'top' => esc_html__( 'Top', 'et_builder' ),
'right' => esc_html__( 'Right', 'et_builder' ),
'bottom' => esc_html__( 'Bottom', 'et_builder' ),
'left' => esc_html__( 'Left', 'et_builder' ),
),
'colorpicker' => array(
'clear' => esc_html__( 'Clear', 'et_builder' ),
'select' => esc_html__( 'Select', 'et_builder' ),
),
'uploadGallery' => array(
'uploadButtonText' => esc_html__( 'Update Gallery', 'et_builder'),
),
'centerMap' => array(
'updateMapButtonText' => esc_html__( 'Find', 'et_builder'),
'geoCodeError' => esc_html__( 'Geocode was not successful for the following reason', 'et_builder' ),
'geoCodeError_2' => esc_html__( 'Geocoder failed due to', 'et_builder' ),
'noResults' => esc_html__( 'No results found', 'et_builder' ),
'mapPinAddressInvalid' => esc_html__( 'Invalid Pin and address data. Please try again.', 'et_builder' ),
),
'tabs' => array(
'general' => esc_html__( 'General', 'et_builder' ),
'design' => esc_html__( 'Design', 'et_builder' ),
'css' => esc_html__( 'CSS', 'et_builder' ),
),
'additionalButton' => array(
'changeApiKey' => esc_html__( 'Change API Key', 'et_builder' ),
'generateImageUrlFromVideo' => esc_html__( 'Generate From Video', 'et_builder' ),
),
),
'rightClickMenuItems' => array(
'undo' => esc_html__( 'Undo', 'et_builder' ),
'redo' => esc_html__( 'Redo', 'et_builder' ),
'lock' => esc_html__( 'Lock', 'et_builder' ),
'unlock' => esc_html__( 'Unlock', 'et_builder' ),
'copy' => esc_html__( 'Copy', 'et_builder' ),
'paste' => esc_html__( 'Paste', 'et_builder' ),
'copyStyle' => esc_html__( 'Copy Style', 'et_builder' ),
'pasteStyle' => esc_html__( 'Paste Style', 'et_builder' ),
'disable' => esc_html__( 'Disable', 'et_builder' ),
'enable' => esc_html__( 'Enable', 'et_builder' ),
'save' => esc_html__( 'Save to Library', 'et_builder' ),
'moduleType' => array(
'module' => esc_html__( 'Module', 'et_builder' ),
'row' => esc_html__( 'Row', 'et_builder' ),
'section' => esc_html__( 'Section', 'et_builder' ),
),
'disableGlobal' => esc_html__( 'Disable Global', 'et_builder' ),
),
'tooltips' => array(
'insertModule' => esc_html__( 'Insert Module', 'et_builder' ),
'insertColumn' => esc_html__( 'Insert Columns', 'et_builder' ),
'insertSection' => esc_html__( 'Insert Section', 'et_builder' ),
'insertRow' => esc_html__( 'Insert Row', 'et_builder' ),
'newModule' => esc_html__( 'New Module', 'et_builder' ),
'newRow' => esc_html__( 'New Row', 'et_builder' ),
'newSection' => esc_html__( 'New Section', 'et_builder' ),
'addFromLibrary' => esc_html__( 'Add From Library', 'et_builder' ),
'addToLibrary' => esc_html__( 'Add to Library', 'et_builder' ),
'loading' => esc_html__( 'loading...', 'et_builder' ),
'regular' => esc_html__( 'Regular', 'et_builder' ),
'fullwidth' => esc_html__( 'Fullwidth', 'et_builder' ),
'specialty' => esc_html__( 'Specialty', 'et_builder' ),
'changeRow' => esc_html__( 'Choose Layout', 'et_builder' ),
'clearLayout' => esc_html__( 'Clear Layout', 'et_builder' ),
'clearLayoutText' => esc_html__( 'All of your current page content will be lost. Do you wish to proceed?', 'et_builder' ),
'yes' => esc_html__( 'Yes', 'et_builder' ),
'loadLayout' => esc_html__( 'Load From Library', 'et_builder' ),
'predefinedLayout' => esc_html__( 'Predefined Layouts', 'et_builder' ),
'replaceLayout' => esc_html__( 'Replace existing content.', 'et_builder' ),
'search' => esc_html__( 'Search', 'et_builder' ) . '...',
'portability' => esc_html__( 'Portability', 'et_builder' ),
'export' => esc_html__( 'Export', 'et_builder' ),
'import' => esc_html__( 'Import', 'et_builder' ),
'exportText' => esc_html__( 'Exporting your Divi Builder Layout will create a JSON file that can be imported into a different website.', 'et_builder' ),
'exportName' => esc_html__( 'Export File Name', 'et_builder' ),
'exportButton' => esc_html__( 'Export Divi Builder Layout', 'et_builder' ),
'importText' => esc_html__( 'Importing a previously-exported Divi Builder Layout file will overwrite all content currently on this page.', 'et_builder' ),
'importField' => esc_html__( 'Select File To Import', 'et_builder' ),
'importBackUp' => esc_html__( 'Download backup before importing', 'et_builder' ),
'importButton' => esc_html__( 'Import Divi Builder Layout', 'et_builder' ),
'noFile' => esc_html__( 'No File Selected', 'et_builder' ),
'chooseFile' => esc_html__( 'Choose File', 'et_builder' ),
),
'saveModuleLibraryAttrs' => array(
'general' => esc_html__( 'Include General Settings', 'et_builder' ),
'advanced' => esc_html__( 'Include Advanced Design Settings', 'et_builder' ),
'css' => esc_html__( 'Include Custom CSS', 'et_builder' ),
'selectCategoriesText' => esc_html__( 'Select category(ies) for new template or type a new name ( optional )', 'et_builder' ),
'templateName' => esc_html__( 'Template Name', 'et_builder' ),
'selectiveSync' => esc_html__( 'Selective Sync', 'et_builder' ),
'selectiveError' => esc_html__( 'Please select at least 1 tab to save', 'et_builder' ),
'globalTitle' => esc_html__( 'Save as Global', 'et_builder' ),
'globalText' => esc_html__( 'Make this a global item', 'et_builder' ),
'createCatText' => esc_html__( 'Create New Category', 'et_builder' ),
'addToCatText' => esc_html__( 'Add To Categories', 'et_builder' ),
'descriptionText' => esc_html__( 'Here you can add the current item to your Divi Library for later use.', 'et_builder' ),
'descriptionTextLayout' => esc_html__( 'Save your current page to the Divi Library for later use.', 'et_builder' ),
'saveText' => esc_html__( 'Save to Library', 'et_builder' ),
'allCategoriesText' => esc_html__( 'All Categories', 'et_builder' ),
),
'modals' => array(
'tabItemTitles' => array(
'general' => esc_html__( 'General', 'et_builder' ),
'design' => esc_html__( 'Design', 'et_builder' ),
'css' => esc_html__( 'CSS', 'et_builder' ),
),
'moduleSettings' => array(
'title' => esc_html__( '%s Settings', 'et_builder' ),
),
'pageSettings' => array(
'title' => esc_html__( 'Page Settings', 'et_builder' ),
),
),
'history' => array(
'modal' => array(
'title' => esc_html__( 'Editing History', 'et_builder' ),
'tabs' => array(
'states' => esc_html__( 'History States', 'et_builder' ),
),
),
'meta' => et_pb_history_localization(),
),
'help' => array(
'modal' => array(
'title' => esc_html__( 'Divi Builder Helper', 'et_builder' ),
'tabs' => array(
'shortcut' => esc_html__( 'Shortcuts', 'et_builder' ),
),
),
'shortcuts' => et_builder_get_shortcuts('fb'),
),
'sortable' => array(
'has_no_ab_permission' => esc_html__( 'You do not have permission to edit the module, row or section in this split test.', 'et_builder' ),
'cannot_move_goal_into_subject' => esc_html__( 'A split testing goal cannot be moved inside of a split testing subject. To perform this action you must first end your split test.', 'et_builder' ),
'cannot_move_subject_into_goal' => esc_html__( 'A split testing subject cannot be moved inside of a split testing goal. To perform this action you must first end your split test.', 'et_builder' ),
'cannot_move_row_goal_out_from_subject' => esc_html__( 'Once set, a goal that has been placed inside a split testing subject cannot be moved outside the split testing subject. You can end your split test and start a new one if you would like to make this change.', 'et_builder' ),
'section_only_row_dragged_away' => esc_html__( 'The section should have at least one row.', 'et_builder' ),
'global_module_alert' => esc_html__( 'You cannot add global modules into global sections or rows', 'et_builder' ),
'cannot_move_module_goal_out_from_subject' => esc_html__( 'Once set, a goal that has been placed inside a split testing subject cannot be moved outside the split testing subject. You can end your split test and start a new one if you would like to make this change.', 'et_builder' ),
'stop_dropping_3_col_row' => esc_html__( '3 column row can\'t be used in this column.', 'et_builder' ),
),
'tooltip' => array(
'pageSettingsBar' => array(
'responsive' => array(
'zoom' => esc_html__( 'Zoom Out', 'et_builder' ),
'desktop' => esc_html__( 'Desktop View', 'et_builder' ),
'tablet' => esc_html__( 'Tablet View', 'et_builder' ),
'phone' => esc_html__( 'Phone View', 'et_builder' ),
),
'main' => array(
'loadLibrary' => esc_html__( 'Load From Library', 'et_builder' ),
'saveToLibrary' => esc_html__( 'Save To Library', 'et_builder' ),
'clearLayout' => esc_html__( 'Clear Layout', 'et_builder' ),
'pageSettingsModal' => esc_html__( 'Page Settings', 'et_builder' ),
'history' => esc_html__( 'Editing History', 'et_builder' ),
'portability' => esc_html__( 'Portability', 'et_builder' ),
'open' => esc_html__( 'Expand Settings', 'et_builder' ),
'close' => esc_html__( 'Collapse Settings', 'et_builder' ),
),
'save' => array(
'saveDraft' => esc_html__( 'Save as Draft', 'et_builder' ),
'save' => esc_html__( 'Save', 'et_builder' ),
'publish' => esc_html__( 'Publish', 'et_builder' ),
)
),
'modal' => array(
'expandModal' => esc_html__( 'Expand Modal', 'et_builder' ),
'contractModal' => esc_html__( 'Contract Modal', 'et_builder' ),
'resize' => esc_html__( 'Resize Modal', 'et_builder' ),
'snapModal' => esc_html__( 'Snap to Left', 'et_builder' ),
'separateModal' => esc_html__( 'Separate Modal', 'et_builder' ),
'redo' => esc_html__( 'Redo', 'et_builder' ),
'undo' => esc_html__( 'Undo', 'et_builder' ),
'cancel' => esc_html__( 'Discard All Changes', 'et_builder' ),
'save' => esc_html__( 'Save Changes', 'et_builder' ),
),
'inlineEditor' => array(
'back' => esc_html__( 'Go Back', 'et_builder' ),
'increaseFontSize' => esc_html__( 'Decrease Font Size', 'et_builder' ),
'decreaseFontSize' => esc_html__( 'Increase Font Size', 'et_builder' ),
'bold' => esc_html__( 'Bold Text', 'et_builder' ),
'italic' => esc_html__( 'Italic Text', 'et_builder' ),
'underline' => esc_html__( 'Underline Text', 'et_builder' ),
'link' => esc_html__( 'Insert Link', 'et_builder' ),
'quote' => esc_html__( 'Insert Quote', 'et_builder' ),
'alignment' => esc_html__( 'Text Alignment', 'et_builder' ),
'centerText' => esc_html__( 'Center Text', 'et_builder' ),
'rightText' => esc_html__( 'Right Text', 'et_builder' ),
'leftText' => esc_html__( 'Left Text', 'et_builder' ),
'justifyText' => esc_html__( 'Justify Text', 'et_builder' ),
'list' => esc_html__( 'List Settings', 'et_builder' ),
'indent' => esc_html__( 'Indent List', 'et_builder' ),
'undent' => esc_html__( 'Undent List', 'et_builder' ),
'orderedList' => esc_html__( 'Insert Ordered List', 'et_builder' ),
'unOrderedList' => esc_html__( 'Insert Unordered List', 'et_builder' ),
'text' => esc_html__( 'Text Settings', 'et_builder' ),
'textColor' => esc_html__( 'Text Color', 'et_builder' ),
'heading' => array(
'one' => esc_html__( 'Insert Heading One', 'et_builder' ),
'two' => esc_html__( 'Insert Heading Two', 'et_builder' ),
'three' => esc_html__( 'Insert Heading Three', 'et_builder' ),
'four' => esc_html__( 'Insert Heading Four', 'et_builder' ),
),
),
'section' => array(
'tab' => array(
'move' => esc_html__( 'Move Section', 'et_builder' ),
'settings' => esc_html__( 'Section Settings', 'et_builder' ),
'duplicate' => esc_html__( 'Duplicate Section', 'et_builder' ),
'addToLibrary' => esc_html__( 'Save Section To Library', 'et_builder' ),
'delete' => esc_html__( 'Delete Section', 'et_builder' ),
),
'addButton' => esc_html__( 'Add New Section', 'et_builder' ),
),
'row' => array(
'tab' => array(
'move' => esc_html__( 'Move Row', 'et_builder' ),
'settings' => esc_html__( 'Row Settings', 'et_builder' ),
'duplicate' => esc_html__( 'Duplicate Row', 'et_builder' ),
'addToLibrary' => esc_html__( 'Save Row To Library', 'et_builder' ),
'delete' => esc_html__( 'Delete Row', 'et_builder' ),
'update' => esc_html__( 'Change Column Structure', 'et_builder' ),
),
'addButton' => esc_html__( 'Add New Row', 'et_builder' ),
'chooseColumn' => esc_html__( 'Choose Column Structure', 'et_builder' ),
),
'module' => array(
'tab' => array(
'move' => esc_html__( 'Move Module', 'et_builder' ),
'settings' => esc_html__( 'Module Settings', 'et_builder' ),
'duplicate' => esc_html__( 'Duplicate Module', 'et_builder' ),
'addToLibrary' => esc_html__( 'Save Module To Library', 'et_builder' ),
'delete' => esc_html__( 'Delete Module', 'et_builder' ),
),
'addButton' => esc_html__( 'Add New Module', 'et_builder' ),
),
),
'unsavedConfirmation' => esc_html__( 'Unsaved changes will be lost if you leave the Divi Builder at this time.', 'et_builder' ),
'libraryLoadError' => esc_html__( 'Error loading Library items from server. Please refresh the page and try again.', 'et_builder' ),
);
// Pass helpers via localization.
wp_localize_script( 'et-frontend-builder', 'ETBuilderBackend', $helpers );
}
if ( ! function_exists( 'et_fb_fix_plugin_conflicts' ) ) :
function et_fb_fix_plugin_conflicts() {
// Disable Autoptimize plugin
remove_action( 'init', 'autoptimize_start_buffering', -1 );
remove_action( 'template_redirect', 'autoptimize_start_buffering', 2 );
}
endif;