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 defined( 'ABSPATH' ) || exit; use YayMail\Utils\Helpers; use YayMail\Utils\TemplateHelpers; /** * $args includes * $element * $render_data * $is_nested */ if ( empty( $args['element'] ) ) { return; } $yaymail_settings = yaymail_settings(); $payment_display_mode = isset( $yaymail_settings['payment_display_mode'] ) ? $yaymail_settings['payment_display_mode'] : false; $element = $args['element']; $data = $element['data']; $template_name = isset( $args['template']->get_data()['name'] ) ? $args['template']->get_data()['name'] : ''; $border_color = isset( $element['data']['border_color'] ) ? $element['data']['border_color'] : 'inherit'; $table_heading_font_size = isset( $data['table_heading_font_size'] ) ? $data['table_heading_font_size'] : 14; $table_content_font_size = isset( $data['table_content_font_size'] ) ? $data['table_content_font_size'] : 14; $wrapper_style = TemplateHelpers::get_style( [ 'word-break' => 'break-word', 'background-color' => $data['background_color'], 'padding' => TemplateHelpers::get_spacing_value( isset( $data['padding'] ) ? $data['padding'] : [] ), ] ); $table_title_style = TemplateHelpers::get_style( [ 'text-align' => yaymail_get_text_align(), 'color' => isset( $data['title_color'] ) ? $data['title_color'] : 'inherit', 'margin-top' => '0', 'font-family' => TemplateHelpers::get_font_family_value( isset( $data['font_family'] ) ? $data['font_family'] : 'inherit' ), 'margin-bottom' => '7px', ] ); $payment_instructions_style = TemplateHelpers::get_style( [ 'text-align' => yaymail_get_text_align(), 'font-size' => '14px', 'color' => isset( $data['text_color'] ) ? $data['text_color'] : 'inherit', 'font-family' => TemplateHelpers::get_font_family_value( isset( $data['font_family'] ) ? $data['font_family'] : 'inherit' ), 'margin-bottom' => '10px', ] ); $is_layout_type_modern = isset( $data['layout_type'] ) && 'modern' === $data['layout_type']; $show_table_header = ! isset( $data['show_table_header'] ) || Helpers::is_true( $data['show_table_header'] ); ob_start(); ?> <style> /* Modern layout */ <?php if ( $is_layout_type_modern ) { ?> [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table { border: 0 !important; } [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table th, [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table td { border: 0 !important; padding-left: 0 !important; padding-right: 0 !important; } [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_price_title, [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_price_content, [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_element_foot_order_details tr td { text-align: right !important; } [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_quantity_title, [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_quantity_content, [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_cost_title, [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_cost_content { text-align: center !important; } [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-quantity-type-modern { display: inline-block !important; } [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table .order_item:last-child td { border-bottom: 1px solid <?php echo esc_attr( $border_color ); ?> !important; } [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table .yaymail-order-detail-row-payment_method td, [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table .yaymail-order-detail-row-payment_method th { border-bottom: 1px solid <?php echo esc_attr( $border_color ); ?> !important; } [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table th { font-size: <?php echo esc_attr( $table_heading_font_size ); ?>px !important; } [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table td { font-size: <?php echo esc_attr( $table_content_font_size ); ?>px !important; } <?php }//end if ?> /* Hide table header */ <?php if ( ! $show_table_header ) { ?> [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_element_head_order_details { display: none !important; } <?php } ?> </style> <div class="yaymail-order-details-title" style="<?php echo esc_attr( $table_title_style ); ?>" > <?php echo wp_kses_post( do_shortcode( $data['title'] ) ); ?> </div> <?php $element_content = ob_get_contents(); ob_end_clean(); $element_content .= do_shortcode( isset( $data['rich_text'] ) ? $data['rich_text'] : '' ); TemplateHelpers::wrap_element_content( $element_content, $element, $wrapper_style );