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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
|
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); }
/** * WPBakery Page Builder basic class. * @since 4.2 */ class Vc_Base { /** * Shortcode's edit form. * * @since 4.2 * @access protected * @var bool|Vc_Shortcode_Edit_Form */ protected $shortcode_edit_form = false;
/** * Templates management panel editor. * @since 4.4 * @access protected * @var bool|Vc_Templates_Panel_Editor */ protected $templates_panel_editor = false; /** * Presets management panel editor. * @since 5.2 * @access protected * @var bool|Vc_Preset_Panel_Editor */ protected $preset_panel_editor = false; /** * Post object for VC in Admin. * * @since 4.4 * @access protected * @var bool|Vc_Post_Admin */ protected $post_admin = false; /** * Post object for VC. * * @since 4.4.3 * @access protected * @var bool|Vc_Post_Admin */ protected $post = false; /** * List of shortcodes map to VC. * * @since 4.2 * @access public * @var array WPBakeryShortCodeFishBones */ protected $shortcodes = array();
/** @var Vc_Shared_Templates */ public $shared_templates;
/** * Load default object like shortcode parsing. * * @since 4.2 * @access public */ public function init() { do_action( 'vc_before_init_base' ); $this->postAdmin()->init(); add_filter( 'body_class', array( $this, 'bodyClass', ) ); add_filter( 'the_excerpt', array( $this, 'excerptFilter', ) ); add_action( 'wp_head', array( $this, 'addMetaData', ) ); if ( is_admin() ) { $this->initAdmin(); } else { $this->initPage(); } do_action( 'vc_after_init_base' ); }
/** * Post object for interacting with Current post data. * @return Vc_Post_Admin * @since 4.4 */ public function postAdmin() { if ( false === $this->post_admin ) { require_once vc_path_dir( 'CORE_DIR', 'class-vc-post-admin.php' ); $this->post_admin = new Vc_Post_Admin(); }
return $this->post_admin; }
/** * Build VC for frontend pages. * * @since 4.2 * @access public */ public function initPage() { do_action( 'vc_build_page' ); add_action( 'template_redirect', array( $this, 'frontCss', ) ); add_action( 'template_redirect', array( 'WPBMap', 'addAllMappedShortcodes', ) ); add_action( 'wp_head', array( $this, 'addFrontCss', ), 1000 ); add_action( 'wp_head', array( $this, 'addNoScript', ), 1000 ); add_action( 'template_redirect', array( $this, 'frontJsRegister', ) ); add_filter( 'the_content', array( $this, 'fixPContent', ), 11 ); }
/** * Load admin required modules and elements * * @since 4.2 * @access public */ public function initAdmin() { do_action( 'vc_build_admin_page' ); // editors actions: $this->editForm()->init(); $this->templatesPanelEditor()->init(); $this->shared_templates->init();
// plugins list page actions links add_filter( 'plugin_action_links', array( $this, 'pluginActionLinks', ), 10, 2 ); }
/** * Setter for edit form. * @param Vc_Shortcode_Edit_Form $form * @since 4.2 * */ public function setEditForm( Vc_Shortcode_Edit_Form $form ) { $this->shortcode_edit_form = $form; }
/** * Get Shortcodes Edit form object. * * @return Vc_Shortcode_Edit_Form * @since 4.2 * @access public * @see Vc_Shortcode_Edit_Form::__construct */ public function editForm() { return $this->shortcode_edit_form; }
/** * Setter for Templates editor. * @param Vc_Templates_Panel_Editor $editor * @since 4.4 * */ public function setTemplatesPanelEditor( Vc_Templates_Panel_Editor $editor ) { $this->templates_panel_editor = $editor; }
/** * Setter for Preset editor. * @param Vc_Preset_Panel_Editor $editor * @since 5.2 * */ public function setPresetPanelEditor( Vc_Preset_Panel_Editor $editor ) { $this->preset_panel_editor = $editor; }
/** * Get templates manager. * @return bool|Vc_Templates_Panel_Editor * @since 4.4 * @access public * @see Vc_Templates_Panel_Editor::__construct */ public function templatesPanelEditor() { return $this->templates_panel_editor; }
/** * Get preset manager. * @return bool|Vc_Preset_Panel_Editor * @since 5.2 * @access public * @see Vc_Preset_Panel_Editor::__construct */ public function presetPanelEditor() { return $this->preset_panel_editor; }
/** * Get shortcode class instance. * * @param string $tag * * @return Vc_Shortcodes_Manager|null * @see WPBakeryShortCodeFishBones * @since 4.2 * @access public * */ public function getShortCode( $tag ) { return Vc_Shortcodes_Manager::getInstance()->setTag( $tag ); }
/** * Remove shortcode from shortcodes list of VC. * * @param $tag - shortcode tag * @since 4.2 * @access public * */ public function removeShortCode( $tag ) { remove_shortcode( $tag ); }
/** * Set or modify new settings for shortcode. * * This function widely used by WPBMap class methods to modify shortcodes mapping * * @param $tag * @param $name * @param $value * @throws \Exception * @since 4.3 */ public function updateShortcodeSetting( $tag, $name, $value ) { Vc_Shortcodes_Manager::getInstance()->getElementClass( $tag )->setSettings( $name, $value ); }
/** * Build custom css styles for page from shortcodes attributes created by VC editors. * * Called by save method, which is hooked by edit_post action. * Function creates meta data for post with the key '_wpb_shortcodes_custom_css' * and value as css string, which will be added to the footer of the page. * * @param $id * @throws \Exception * @since 4.2 * @access public */ public function buildShortcodesCustomCss( $id ) { if ( 'dopreview' === vc_post_param( 'wp-preview' ) && wp_revisions_enabled( get_post( $id ) ) ) { $latest_revision = wp_get_post_revisions( $id ); if ( ! empty( $latest_revision ) ) { $array_values = array_values( $latest_revision ); $id = $array_values[0]->ID; } }
$post = get_post( $id ); /** * vc_filter: vc_base_build_shortcodes_custom_css * @since 4.4 */ $css = apply_filters( 'vc_base_build_shortcodes_custom_css', $this->parseShortcodesCustomCss( $post->post_content ), $id ); if ( empty( $css ) ) { delete_metadata( 'post', $id, '_wpb_shortcodes_custom_css' ); } else { update_metadata( 'post', $id, '_wpb_shortcodes_custom_css', $css ); } }
/** * Parse shortcodes custom css string. * * This function is used by self::buildShortcodesCustomCss and creates css string from shortcodes attributes * like 'css_editor'. * * @param $content * * @return string * @throws \Exception * @see WPBakeryVisualComposerCssEditor * @since 4.2 * @access public */ public function parseShortcodesCustomCss( $content ) { $css = ''; if ( ! preg_match( '/\s*(\.[^\{]+)\s*\{\s*([^\}]+)\s*\}\s*/', $content ) ) { return $css; } WPBMap::addAllMappedShortcodes(); preg_match_all( '/' . get_shortcode_regex() . '/', $content, $shortcodes ); foreach ( $shortcodes[2] as $index => $tag ) { $shortcode = WPBMap::getShortCode( $tag ); $attr_array = shortcode_parse_atts( trim( $shortcodes[3][ $index ] ) ); if ( isset( $shortcode['params'] ) && ! empty( $shortcode['params'] ) ) { foreach ( $shortcode['params'] as $param ) { if ( isset( $param['type'] ) && 'css_editor' === $param['type'] && isset( $attr_array[ $param['param_name'] ] ) ) { $css .= $attr_array[ $param['param_name'] ]; } } } } foreach ( $shortcodes[5] as $shortcode_content ) { $css .= $this->parseShortcodesCustomCss( $shortcode_content ); }
return $css; }
/** * Hooked class method by wp_head WP action to output post custom css. * * Method gets post meta value for page by key '_wpb_post_custom_css' and if it is not empty * outputs css string wrapped into style tag. * * @param int $id * @since 4.2 * @access public * */ public function addPageCustomCss( $id = null ) { if ( is_front_page() || is_home() ) { $id = get_queried_object_id(); } elseif ( is_singular() ) { if ( ! $id ) { $id = get_the_ID(); } }
if ( $id ) { if ( 'true' === vc_get_param( 'preview' ) && wp_revisions_enabled( get_post( $id ) ) ) { $latest_revision = wp_get_post_revisions( $id ); if ( ! empty( $latest_revision ) ) { $array_values = array_values( $latest_revision ); $id = $array_values[0]->ID; } } $post_custom_css = get_metadata( 'post', $id, '_wpb_post_custom_css', true ); $post_custom_css = apply_filters( 'vc_post_custom_css', $post_custom_css, $id ); if ( ! empty( $post_custom_css ) ) { $post_custom_css = wp_strip_all_tags( $post_custom_css ); echo '<style type="text/css" data-type="vc_custom-css">'; echo $post_custom_css; echo '</style>'; } } }
/** * Hooked class method by wp_footer WP action to output shortcodes css editor settings from page meta data. * * Method gets post meta value for page by key '_wpb_shortcodes_custom_css' and if it is not empty * outputs css string wrapped into style tag. * * @param int $id * * @since 4.2 * @access public * */ public function addShortcodesCustomCss( $id = null ) { if ( ! $id && is_singular() ) { $id = get_the_ID(); }
if ( $id ) { if ( 'true' === vc_get_param( 'preview' ) && wp_revisions_enabled( get_post( $id ) ) ) { $latest_revision = wp_get_post_revisions( $id ); if ( ! empty( $latest_revision ) ) { $array_values = array_values( $latest_revision ); $id = $array_values[0]->ID; } } $shortcodes_custom_css = get_metadata( 'post', $id, '_wpb_shortcodes_custom_css', true ); $shortcodes_custom_css = apply_filters( 'vc_shortcodes_custom_css', $shortcodes_custom_css, $id ); if ( ! empty( $shortcodes_custom_css ) ) { $shortcodes_custom_css = wp_strip_all_tags( $shortcodes_custom_css ); echo '<style type="text/css" data-type="vc_shortcodes-custom-css">'; echo $shortcodes_custom_css; echo '</style>'; } } }
/** * Add css styles for current page and elements design options added w\ editor. */ public function addFrontCss() { $this->addPageCustomCss(); $this->addShortcodesCustomCss(); }
public function addNoScript() { $custom_tag = 'style'; $second_tag = 'noscript'; echo '<' . esc_attr( $second_tag ) . '>'; echo '<' . esc_attr( $custom_tag ) . '>'; echo ' .wpb_animate_when_almost_visible { opacity: 1; }'; echo '</' . esc_attr( $custom_tag ) . '>'; echo '</' . esc_attr( $second_tag ) . '>'; }
/** * Register front css styles. * * Calls wp_register_style for required css libraries files. * * @since 3.1 * @access public */ public function frontCss() { wp_register_style( 'flexslider', vc_asset_url( 'lib/bower/flexslider/flexslider.min.css' ), array(), WPB_VC_VERSION ); wp_register_style( 'nivo-slider-css', vc_asset_url( 'lib/bower/nivoslider/nivo-slider.min.css' ), array(), WPB_VC_VERSION ); wp_register_style( 'nivo-slider-theme', vc_asset_url( 'lib/bower/nivoslider/themes/default/default.min.css' ), array( 'nivo-slider-css' ), WPB_VC_VERSION ); wp_register_style( 'prettyphoto', vc_asset_url( 'lib/prettyphoto/css/prettyPhoto.min.css' ), array(), WPB_VC_VERSION ); wp_register_style( 'isotope-css', vc_asset_url( 'css/lib/isotope.min.css' ), array(), WPB_VC_VERSION ); wp_register_style( 'vc_font_awesome_5_shims', vc_asset_url( 'lib/bower/font-awesome/css/v4-shims.min.css' ), array(), WPB_VC_VERSION ); wp_register_style( 'vc_font_awesome_5', vc_asset_url( 'lib/bower/font-awesome/css/all.min.css' ), array( 'vc_font_awesome_5_shims' ), WPB_VC_VERSION ); wp_register_style( 'vc_animate-css', vc_asset_url( 'lib/bower/animate-css/animate.min.css' ), array(), WPB_VC_VERSION );
$front_css_file = vc_asset_url( 'css/js_composer.min.css' ); $upload_dir = wp_upload_dir(); $vc_upload_dir = vc_upload_dir(); if ( '1' === vc_settings()->get( 'use_custom' ) && is_file( $upload_dir['basedir'] . '/' . $vc_upload_dir . '/js_composer_front_custom.css' ) ) { $front_css_file = $upload_dir['baseurl'] . '/' . $vc_upload_dir . '/js_composer_front_custom.css'; $front_css_file = vc_str_remove_protocol( $front_css_file ); } wp_register_style( 'js_composer_front', $front_css_file, array(), WPB_VC_VERSION );
$custom_css_path = $upload_dir['basedir'] . '/' . $vc_upload_dir . '/custom.css'; if ( is_file( $upload_dir['basedir'] . '/' . $vc_upload_dir . '/custom.css' ) && filesize( $custom_css_path ) > 0 ) { $custom_css_url = $upload_dir['baseurl'] . '/' . $vc_upload_dir . '/custom.css'; $custom_css_url = vc_str_remove_protocol( $custom_css_url ); wp_register_style( 'js_composer_custom_css', $custom_css_url, array(), WPB_VC_VERSION ); }
add_action( 'wp_enqueue_scripts', array( $this, 'enqueueStyle', ) );
/** * @since 4.4 */ do_action( 'vc_base_register_front_css' ); }
/** * Enqueue base css class for VC elements and enqueue custom css if exists. */ public function enqueueStyle() { $post = get_post(); if ( $post && strpos( $post->post_content, '[vc_row' ) !== false ) { wp_enqueue_style( 'js_composer_front' ); } wp_enqueue_style( 'js_composer_custom_css' ); }
/** * Register front javascript libs. * * Calls wp_register_script for required css libraries files. * * @since 3.1 * @access public */ public function frontJsRegister() { wp_register_script( 'prettyphoto', vc_asset_url( 'lib/prettyphoto/js/jquery.prettyPhoto.min.js' ), array( 'jquery-core' ), WPB_VC_VERSION, true ); wp_register_script( 'vc_waypoints', vc_asset_url( 'lib/vc_waypoints/vc-waypoints.min.js' ), array( 'jquery-core' ), WPB_VC_VERSION, true );
// @deprecated used in old tabs wp_register_script( 'jquery_ui_tabs_rotate', vc_asset_url( 'lib/bower/jquery-ui-tabs-rotate/jquery-ui-tabs-rotate.min.js' ), array( 'jquery-core', 'jquery-ui-tabs', ), WPB_VC_VERSION, true );
// used in vc_gallery, old grid wp_register_script( 'isotope', vc_asset_url( 'lib/bower/isotope/dist/isotope.pkgd.min.js' ), array( 'jquery-core' ), WPB_VC_VERSION, true );
wp_register_script( 'twbs-pagination', vc_asset_url( 'lib/bower/twbs-pagination/jquery.twbsPagination.min.js' ), array( 'jquery-core' ), WPB_VC_VERSION, true ); wp_register_script( 'nivo-slider', vc_asset_url( 'lib/bower/nivoslider/jquery.nivo.slider.pack.js' ), array( 'jquery-core' ), WPB_VC_VERSION, true ); wp_register_script( 'flexslider', vc_asset_url( 'lib/bower/flexslider/jquery.flexslider-min.js' ), array( 'jquery-core' ), WPB_VC_VERSION, true ); wp_register_script( 'wpb_composer_front_js', vc_asset_url( 'js/dist/js_composer_front.min.js' ), array( 'jquery-core' ), WPB_VC_VERSION, true );
/** * @since 4.4 */ do_action( 'vc_base_register_front_js' ); }
/** * Register admin javascript libs. * * Calls wp_register_script for required css libraries files for Admin dashboard. * * @since 3.1 * vc_filter: vc_i18n_locale_composer_js_view, since 4.4 - override localization for js * @access public */ public function registerAdminJavascript() { /** * @since 4.4 */ do_action( 'vc_base_register_admin_js' );
}
/** * Register admin css styles. * * Calls wp_register_style for required css libraries files for admin dashboard. * * @since 3.1 * @access public */ public function registerAdminCss() { /** * @since 4.4 */ do_action( 'vc_base_register_admin_css' ); }
/** * Add Settings link in plugin's page * @param $links * @param $file * * @return array * @throws \Exception * @since 4.2 */ public function pluginActionLinks( $links, $file ) { if ( plugin_basename( vc_path_dir( 'APP_DIR', '/js_composer.php' ) ) === $file ) { $title = esc_html__( 'WPBakery Page Builder Settings', 'js_composer' ); $html = esc_html__( 'Settings', 'js_composer' ); if ( ! vc_user_access()->part( 'settings' )->can( 'vc-general-tab' )->get() ) { $title = esc_html__( 'About WPBakery Page Builder', 'js_composer' ); $html = esc_html__( 'About', 'js_composer' ); } $link = '<a title="' . esc_attr( $title ) . '" href="' . esc_url( $this->getSettingsPageLink() ) . '">' . $html . '</a>'; array_unshift( $links, $link ); // Add to top }
return $links; }
/** * Get settings page link * @return string url to settings page * @throws \Exception * @since 4.2 */ public function getSettingsPageLink() { $page = 'vc-general'; if ( ! vc_user_access()->part( 'settings' )->can( 'vc-general-tab' )->get() ) { $page = 'vc-welcome'; }
return add_query_arg( array( 'page' => $page ), admin_url( 'admin.php' ) ); }
/** * Hooked class method by wp_head WP action. * @since 4.2 * @access public */ public function addMetaData() { echo '<meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>' . "\n"; }
/** * Method adds css class to body tag. * * Hooked class method by body_class WP filter. Method adds custom css class to body tag of the page to help * identify and build design specially for VC shortcodes. * * @param $classes * * @return array * @since 4.2 * @access public * */ public function bodyClass( $classes ) { return js_composer_body_class( $classes ); }
/** * Builds excerpt for post from content. * * Hooked class method by the_excerpt WP filter. When user creates content with VC all content is always wrapped by * shortcodes. This methods calls do_shortcode for post's content and then creates a new excerpt. * * @param $output * * @return string * @since 4.2 * @access public * */ public function excerptFilter( $output ) { global $post; if ( empty( $output ) && ! empty( $post->post_content ) ) { $text = wp_strip_all_tags( do_shortcode( $post->post_content ) ); $excerpt_length = apply_filters( 'excerpt_length', 55 ); $excerpt_more = apply_filters( 'excerpt_more', ' [...]' ); $text = wp_trim_words( $text, $excerpt_length, $excerpt_more );
return $text; }
return $output; }
/** * Remove unwanted wraping with p for content. * * Hooked by 'the_content' filter. * @param null $content * * @return string|null * @since 4.2 * */ public function fixPContent( $content = null ) { if ( $content ) { $s = array( '/' . preg_quote( '</div>', '/' ) . '[\s\n\f]*' . preg_quote( '</p>', '/' ) . '/i', '/' . preg_quote( '<p>', '/' ) . '[\s\n\f]*' . preg_quote( '<div ', '/' ) . '/i', '/' . preg_quote( '<p>', '/' ) . '[\s\n\f]*' . preg_quote( '<section ', '/' ) . '/i', '/' . preg_quote( '</section>', '/' ) . '[\s\n\f]*' . preg_quote( '</p>', '/' ) . '/i', ); $r = array( '</div>', '<div ', '<section ', '</section>', ); $content = preg_replace( $s, $r, $content );
return $content; }
return null; }
/** * Get array of string for locale. * * @return array * @since 4.7 * */ public function getEditorsLocale() { return array( 'add_remove_picture' => esc_html__( 'Add/remove picture', 'js_composer' ), 'finish_adding_text' => esc_html__( 'Finish Adding Images', 'js_composer' ), 'add_image' => esc_html__( 'Add Image', 'js_composer' ), 'add_images' => esc_html__( 'Add Images', 'js_composer' ), 'settings' => esc_html__( 'Settings', 'js_composer' ), 'main_button_title' => esc_html__( 'WPBakery Page Builder', 'js_composer' ), 'main_button_title_backend_editor' => esc_html__( 'Backend Editor', 'js_composer' ), 'main_button_title_frontend_editor' => esc_html__( 'Frontend Editor', 'js_composer' ), 'main_button_title_revert' => esc_html__( 'Classic Mode', 'js_composer' ), 'main_button_title_gutenberg' => esc_html__( 'Gutenberg Editor', 'js_composer' ), 'please_enter_templates_name' => esc_html__( 'Enter template name you want to save.', 'js_composer' ), 'confirm_deleting_template' => esc_html__( 'Confirm deleting "{template_name}" template, press Cancel to leave. This action cannot be undone.', 'js_composer' ), 'press_ok_to_delete_section' => esc_html__( 'Press OK to delete section, Cancel to leave', 'js_composer' ), 'drag_drop_me_in_column' => esc_html__( 'Drag and drop me in the column', 'js_composer' ), 'press_ok_to_delete_tab' => esc_html__( 'Press OK to delete "{tab_name}" tab, Cancel to leave', 'js_composer' ), 'slide' => esc_html__( 'Slide', 'js_composer' ), 'tab' => esc_html__( 'Tab', 'js_composer' ), 'section' => esc_html__( 'Section', 'js_composer' ), 'please_enter_new_tab_title' => esc_html__( 'Please enter new tab title', 'js_composer' ), 'press_ok_delete_section' => esc_html__( 'Press OK to delete "{tab_name}" section, Cancel to leave', 'js_composer' ), 'section_default_title' => esc_html__( 'Section', 'js_composer' ), 'please_enter_section_title' => esc_html__( 'Please enter new section title', 'js_composer' ), 'error_please_try_again' => esc_html__( 'Error. Please try again.', 'js_composer' ), 'if_close_data_lost' => esc_html__( 'If you close this window all shortcode settings will be lost. Close this window?', 'js_composer' ), 'header_select_element_type' => esc_html__( 'Select element type', 'js_composer' ), 'header_media_gallery' => esc_html__( 'Media gallery', 'js_composer' ), 'header_element_settings' => esc_html__( 'Element settings', 'js_composer' ), 'add_tab' => esc_html__( 'Add tab', 'js_composer' ), 'are_you_sure_convert_to_new_version' => esc_html__( 'Are you sure you want to convert to new version?', 'js_composer' ), 'loading' => esc_html__( 'Loading...', 'js_composer' ), // Media editor 'set_image' => esc_html__( 'Set Image', 'js_composer' ), 'are_you_sure_reset_css_classes' => esc_html__( 'Are you sure that you want to remove all your data?', 'js_composer' ), 'loop_frame_title' => esc_html__( 'Loop settings', 'js_composer' ), 'enter_custom_layout' => esc_html__( 'Custom row layout', 'js_composer' ), 'wrong_cells_layout' => esc_html__( 'Wrong row layout format! Example: 1/2 + 1/2 or span6 + span6.', 'js_composer' ), 'row_background_color' => esc_html__( 'Row background color', 'js_composer' ), 'row_background_image' => esc_html__( 'Row background image', 'js_composer' ), 'column_background_color' => esc_html__( 'Column background color', 'js_composer' ), 'column_background_image' => esc_html__( 'Column background image', 'js_composer' ), 'guides_on' => esc_html__( 'Guides ON', 'js_composer' ), 'guides_off' => esc_html__( 'Guides OFF', 'js_composer' ), 'template_save' => esc_html__( 'New template successfully saved.', 'js_composer' ), 'template_added' => esc_html__( 'Template added to the page.', 'js_composer' ), 'template_added_with_id' => esc_html__( 'Template added to the page. Template has ID attributes, make sure that they are not used more than once on the same page.', 'js_composer' ), 'template_removed' => esc_html__( 'Template successfully removed.', 'js_composer' ), 'template_is_empty' => esc_html__( 'Template is empty: There is no content to be saved as a template.', 'js_composer' ), 'template_save_error' => esc_html__( 'Error while saving template.', 'js_composer' ), 'css_updated' => esc_html__( 'Page settings updated!', 'js_composer' ), 'update_all' => esc_html__( 'Update all', 'js_composer' ), 'confirm_to_leave' => esc_html__( 'The changes you made will be lost if you navigate away from this page.', 'js_composer' ), 'inline_element_saved' => esc_html__( '%s saved!', 'js_composer' ), 'inline_element_deleted' => esc_html__( '%s deleted!', 'js_composer' ), 'inline_element_cloned' => sprintf( __( '%%s cloned. %sEdit now?%s', 'js_composer' ), '<a href="#" class="vc_edit-cloned" data-model-id="%s">', '</a>' ), 'gfonts_loading_google_font_failed' => esc_html__( 'Loading Google Font failed', 'js_composer' ), 'gfonts_loading_google_font' => esc_html__( 'Loading Font...', 'js_composer' ), 'gfonts_unable_to_load_google_fonts' => esc_html__( 'Unable to load Google Fonts', 'js_composer' ), 'no_title_parenthesis' => sprintf( '(%s)', esc_html__( 'no title', 'js_composer' ) ), 'error_while_saving_image_filtered' => esc_html__( 'Error while applying filter to the image. Check your server and memory settings.', 'js_composer' ), 'ui_saved' => sprintf( '<i class="vc-composer-icon vc-c-icon-check"></i> %s', esc_html__( 'Saved!', 'js_composer' ) ), 'ui_danger' => sprintf( '<i class="vc-composer-icon vc-c-icon-close"></i> %s', esc_html__( 'Failed to Save!', 'js_composer' ) ), 'delete_preset_confirmation' => esc_html__( 'You are about to delete this preset. This action can not be undone.', 'js_composer' ), 'ui_template_downloaded' => esc_html__( 'Downloaded', 'js_composer' ), 'ui_template_update' => esc_html__( 'Update', 'js_composer' ), 'ui_templates_failed_to_download' => esc_html__( 'Failed to download template', 'js_composer' ), 'preset_removed' => esc_html__( 'Element successfully removed.', 'js_composer' ), 'vc_successfully_updated' => esc_html__( 'Successfully updated!', 'js_composer' ), 'gutenbergDoesntWorkProperly' => esc_html__( 'Gutenberg plugin doesn\'t work properly. Please check Gutenberg plugin.', 'js_composer' ), 'unfiltered_html_access' => esc_html__( 'Custom HTML is disabled for your user role. Please contact your site Administrator to change your capabilities.', 'js_composer' ), ); } }
|