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
|
<?php defined( 'ABSPATH' ) || exit;
use YayMail\Elements\ElementsLoader; use YayMail\Utils\TemplateHelpers;
/** * $args includes * $element * $render_data * $is_nested */ if ( empty( $args['element'] ) ) { return; }
$element = $args['element']; $data = $element['data']; $direction = isset( $data['direction'] ) ? $data['direction'] : 'vertical';
if ( 'horizontal' === $direction ) { $args['is_horizontal'] = true; }
$wrapper_style = TemplateHelpers::get_style( [ 'background-color' => $data['background_color'], 'padding' => TemplateHelpers::get_spacing_value( isset( $data['padding'] ) ? $data['padding'] : [] ), 'overflow' => 'hidden', ] );
$inner_style = TemplateHelpers::get_style( [ 'width' => '100%', 'overflow' => 'hidden', ] );
ob_start(); ?>
<div class="yaymail-inner-customizer-element-container" style="<?php echo esc_attr( $inner_style ); ?>"> <table style="width: 100%; background-color: inherit;" cellpadding="0" cellspacing="0" width="100%"> <tbody> <?php ElementsLoader::render_elements( $element['children'], $args ); ?> </tbody> </table> </div>
<?php $element_content = ob_get_clean();
TemplateHelpers::wrap_element_content( $element_content, $element, $wrapper_style );
|