Server IP : 162.0.217.223 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/yaymail/templates/elements/ |
Upload File : |
<?php use YayMail\Utils\TemplateHelpers; extract( isset( $args ) ? $args : [] ); if ( empty( $element ) ) { return; } if ( ! isset( $content_html ) ) { $content_html = ''; } if ( empty( $wrapper_style ) ) { $wrapper_style = ''; } $yaymail_settings = yaymail_settings(); $container_direction = yaymail_get_email_direction(); $wrapper_style .= TemplateHelpers::get_style( [ 'border-spacing' => '0', 'width' => '100%', 'direction' => $container_direction, 'min-width' => '100%', 'border-collapse' => 'separate', ] ); $border_style = isset( $element['data']['border'] ) ? TemplateHelpers::get_border_css_value( $element['data']['border'] ) : ''; if ( ! empty( $border_style ) && 'button' !== $element['type'] ) { $wrapper_style .= $border_style; } $user_custom_classes = isset( $element['data']['custom_css_classes'] ) ? $element['data']['custom_css_classes'] : ''; $settings = yaymail_settings(); if ( ! empty( trim( wp_kses_post( $content_html ) ) ) ) { ?> <div class="yaymail-element <?php echo esc_attr( $user_custom_classes ); ?>" data-yaymail-element-type="<?php echo esc_attr( $element['type'] ); ?>" style="width: 100%; margin: 0 auto;" data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"> <table cellpadding="0" cellspacing="0" class="yaymail-element__content" style="<?php echo esc_attr( $wrapper_style ); ?>"> <tbody> <tr> <td> <style> .yaymail-element__content p { font-size: 14px; margin: 0px; } </style> <?php yaymail_kses_post_e( $content_html ); ?> </td> </tr> </tbody> </table> </div> <?php }//end if ?>