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
|
<?php defined( 'ABSPATH' ) || exit;
use YayMail\Utils\TemplateHelpers;
if ( empty( $args['element'] ) ) { return; }
$element = $args['element']; $data = $element['data'];
$billing_address_html = wp_kses_post( do_shortcode( isset( $data['rich_text'] ) ? $data['rich_text'] : '[yaymail_billing_address]' ) );
if ( empty( $billing_address_html ) ) : return ''; endif;
$wrapper_style = TemplateHelpers::get_style( [ 'word-break' => 'break-word', 'background-color' => $data['background_color'], 'padding' => TemplateHelpers::get_spacing_value( isset( $data['padding'] ) ? $data['padding'] : [] ), ] );
$billing_border_style = TemplateHelpers::get_style( [ 'border' => 'solid 1px ' . $data['border_color'], ] );
$billing_wrapper_style = TemplateHelpers::get_style( [ 'color' => isset( $data['text_color'] ) ? $data['text_color'] : 'inherit', 'padding' => '12px', 'text-align' => yaymail_get_text_align(), 'font-size' => '14px', 'font-family' => TemplateHelpers::get_font_family_value( isset( $data['font_family'] ) ? $data['font_family'] : 'inherit' ), 'border' => 'solid 1px ' . $data['border_color'], ] );
$title_style = TemplateHelpers::get_style( [ 'text-align' => yaymail_get_text_align(), 'color' => isset( $data['title_color'] ) ? $data['title_color'] : 'inherit', 'margin' => '0 0 7px 0', 'font-size' => '20px', 'font-weight' => '600', 'font-family' => TemplateHelpers::get_font_family_value( isset( $data['font_family'] ) ? $data['font_family'] : 'inherit' ), ] );
$is_layout_type_modern = isset( $data['layout_type'] ) && 'modern' === $data['layout_type'];
ob_start(); ?> <style> /* Modern layout */ <?php if ( $is_layout_type_modern ) { ?> [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-billing-address-wrap { border: 0 !important; padding-left: 0 !important; padding-right: 0 !important; } <?php }//end if ?> </style> <div class="yaymail-billing-title" style="<?php echo esc_attr( $title_style ); ?>" > <?php echo wp_kses_post( do_shortcode( $data['title'] ) ); ?> </div> <div class="yaymail-billing-address-wrap" style="<?php echo esc_attr( $billing_wrapper_style ); ?>"> <?php echo wp_kses_post( do_shortcode( isset( $data['rich_text'] ) ? $data['rich_text'] : '[yaymail_billing_address]' ) ); ?> </div> <?php $element_content = ob_get_clean(); TemplateHelpers::wrap_element_content( $element_content, $element, $wrapper_style );
|