← All changes
|
includes/blocks/storeengine-billing-info/block.php
+106
-0
2.7.6
→
2.14.0
View file →
| @@ -1,0 +1,106 @@ | ||
| 1 | +<?php | |
| 2 | + | |
| 3 | +namespace ABlocks\Blocks\StoreengineBillingInfo; | |
| 4 | + | |
| 5 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 6 | + exit; | |
| 7 | +} | |
| 8 | + | |
| 9 | +use ABlocks\Classes\BlockBaseAbstract; | |
| 10 | +use ABlocks\Classes\CssGenerator; | |
| 11 | +use ABlocks\Classes\CssGeneratorV2; | |
| 12 | +use ABlocks\Helper; | |
| 13 | +use ABlocks\Controls\Typography; | |
| 14 | +use ABlocks\Controls\Background; | |
| 15 | +use ABlocks\Controls\Border; | |
| 16 | +use ABlocks\Controls\Dimensions; | |
| 17 | +use ABlocks\Controls\Range; | |
| 18 | +use ABlocks\Controls\Color; | |
| 19 | + | |
| 20 | +class Block extends BlockBaseAbstract { | |
| 21 | + protected $block_name = 'storeengine-billing-info'; | |
| 22 | + | |
| 23 | + public function build_css_v1( $attributes ) { | |
| 24 | + $css_generator = new CssGenerator( $attributes ); | |
| 25 | + return $css_generator->generate_css(); | |
| 26 | + } | |
| 27 | + | |
| 28 | + public function build_css_v2( $attributes ) { | |
| 29 | + $css_generator = new CssGenerator( $attributes, $this->block_name ); | |
| 30 | + | |
| 31 | + $css_generator->add_class_styles( | |
| 32 | + '{{WRAPPER}} .storeengine-order-billing-shortcode .storeengine-order-billing-heading', | |
| 33 | + $this->get_billing_heading_css( $attributes, '' ), | |
| 34 | + $this->get_billing_heading_css( $attributes, 'Tablet' ), | |
| 35 | + $this->get_billing_heading_css( $attributes, 'Mobile' ), | |
| 36 | + $css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_billing_heading_css( $attributes, $device ); } ) | |
| 37 | + ); | |
| 38 | + $css_generator->add_class_styles( | |
| 39 | + '{{WRAPPER}} .storeengine-order-billing-shortcode .storeengine-order-billing-heading:hover', | |
| 40 | + $this->get_billing_heading_hover_css( $attributes, '' ), | |
| 41 | + $this->get_billing_heading_hover_css( $attributes, 'Tablet' ), | |
| 42 | + $this->get_billing_heading_hover_css( $attributes, 'Mobile' ), | |
| 43 | + $css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_billing_heading_hover_css( $attributes, $device ); } ) | |
| 44 | + ); | |
| 45 | + $css_generator->add_class_styles( | |
| 46 | + '{{WRAPPER}} .storeengine-order-billing-shortcode .storeengine-order-billing-address p', | |
| 47 | + $this->get_billing_address_css( $attributes, '' ), | |
| 48 | + $this->get_billing_address_css( $attributes, 'Tablet' ), | |
| 49 | + $this->get_billing_address_css( $attributes, 'Mobile' ), | |
| 50 | + $css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_billing_address_css( $attributes, $device ); } ) | |
| 51 | + ); | |
| 52 | + $css_generator->add_class_styles( | |
| 53 | + '{{WRAPPER}} .storeengine-order-billing-shortcode .storeengine-order-billing-address p:hover', | |
| 54 | + $this->get_billing_address_hover_css( $attributes, '' ), | |
| 55 | + $this->get_billing_address_hover_css( $attributes, 'Tablet' ), | |
| 56 | + $this->get_billing_address_hover_css( $attributes, 'Mobile' ), | |
| 57 | + $css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_billing_address_hover_css( $attributes, $device ); } ) | |
| 58 | + ); | |
| 59 | + | |
| 60 | + return $css_generator->generate_css(); | |
| 61 | + } | |
| 62 | + | |
| 63 | + public function build_css( $attributes ) { | |
| 64 | + if ( isset( $attributes['blockVersion'] ) && (int) $attributes['blockVersion'] === 2 ) { | |
| 65 | + return $this->build_css_v2( $attributes ); | |
| 66 | + } | |
| 67 | + return $this->build_css_v1( $attributes ); | |
| 68 | + } | |
| 69 | + | |
| 70 | + public function get_billing_heading_css( $attributes, $device = '' ) { | |
| 71 | + $typographyValueGlobal = ! empty( $attributes['heading_typograhyGlobal'] ) ? $attributes['heading_typograhyGlobal'] : ''; | |
| 72 | + $typography_css = isset( $attributes['heading_typograhy'] ) ? $attributes['heading_typograhy'] : []; | |
| 73 | + | |
| 74 | + return array_merge( | |
| 75 | + [ 'color' => Color::get_css( isset( $attributes['heading_color'] ) ? $attributes['heading_color'] : '' ) ], | |
| 76 | + Typography::get_css( $typography_css, '', $device, $typographyValueGlobal ), | |
| 77 | + ); | |
| 78 | + } | |
| 79 | + | |
| 80 | + public function get_billing_heading_hover_css( $attributes, $device = '' ) { | |
| 81 | + return [ 'color' => Color::get_css( isset( $attributes['heading_hover_color'] ) ? $attributes['heading_hover_color'] : '' ) ]; | |
| 82 | + | |
| 83 | + } | |
| 84 | + | |
| 85 | + | |
| 86 | + public function get_billing_address_css( $attributes, $device = '' ) { | |
| 87 | + $typographyValueGlobal = ! empty( $attributes['address_typograhyGlobal'] ) ? $attributes['address_typograhyGlobal'] : ''; | |
| 88 | + $typography_css = isset( $attributes['address_typograhy'] ) ? $attributes['address_typograhy'] : []; | |
| 89 | + | |
| 90 | + return array_merge( | |
| 91 | + [ 'color' => Color::get_css( isset( $attributes['address_color'] ) ? $attributes['address_color'] : '' ) ], | |
| 92 | + Typography::get_css( $typography_css, '', $device, $typographyValueGlobal ) | |
| 93 | + ); | |
| 94 | + } | |
| 95 | + | |
| 96 | + public function get_billing_address_hover_css( $attributes, $device = '' ) { | |
| 97 | + return [ 'color' => Color::get_css( isset( $attributes['address_hover_color'] ) ? $attributes['address_hover_color'] : '' ) ]; | |
| 98 | + } | |
| 99 | + | |
| 100 | + public function render_block_content( $attributes, $content, $block_instance ) { | |
| 101 | + // StoreEngine core falls back to sample content when there's no real | |
| 102 | + // order (e.g. in the editor), so no dummy flag is needed here. | |
| 103 | + echo do_shortcode( '[storeengine_order_billing_address]' ); | |
| 104 | + } | |
| 105 | + | |
| 106 | +} | |