PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.11.1
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.11.1
2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 All 80 releases
ablocks / includes / blocks / storeengine-shipping-info / block.php

block.php in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.11.1, at includes/blocks/storeengine-shipping-info/block.php

109 lines 4.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace ABlocks\Blocks\StoreengineShippingInfo;
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-shipping-info';
22
23 public function build_css_v1( $attributes ) {
24 $css_generator = new CssGenerator( $attributes );
25 return $css_generator->generate_css();
26 }
27
28
29 public function build_css_v2( $attributes ) {
30 $css_generator = new CssGenerator( $attributes, $this->block_name );
31
32 $css_generator->add_class_styles(
33 '{{WRAPPER}} .storeengine-order-shipping-shortcode .storeengine-order-shipping-heading',
34 $this->get_shipping_heading_css( $attributes, '' ),
35 $this->get_shipping_heading_css( $attributes, 'Tablet' ),
36 $this->get_shipping_heading_css( $attributes, 'Mobile' )
37 );
38
39 $css_generator->add_class_styles(
40 '{{WRAPPER}} .storeengine-order-shipping-shortcode .storeengine-order-shipping-heading:hover',
41 $this->get_shipping_heading_hover_css( $attributes, '' ),
42 $this->get_shipping_heading_hover_css( $attributes, 'Tablet' ),
43 $this->get_shipping_heading_hover_css( $attributes, 'Mobile' )
44 );
45 $css_generator->add_class_styles(
46 '{{WRAPPER}} .storeengine-order-shipping-shortcode .storeengine-order-shipping-address p',
47 $this->get_shipping_address_css( $attributes, '' ),
48 $this->get_shipping_address_css( $attributes, 'Tablet' ),
49 $this->get_shipping_address_css( $attributes, 'Mobile' )
50 );
51
52 $css_generator->add_class_styles(
53 '{{WRAPPER}} .storeengine-order-shipping-shortcode .storeengine-order-shipping-address p:hover',
54 $this->get_shipping_address_hover_css( $attributes, '' ),
55 $this->get_shipping_address_hover_css( $attributes, 'Tablet' ),
56 $this->get_shipping_address_hover_css( $attributes, 'Mobile' )
57 );
58
59 return $css_generator->generate_css();
60 }
61
62 public function build_css( $attributes ) {
63 if ( isset( $attributes['blockVersion'] ) && (int) $attributes['blockVersion'] === 2 ) {
64 return $this->build_css_v2( $attributes );
65 }
66 return $this->build_css_v1( $attributes );
67 }
68
69 public function get_shipping_heading_css( $attributes, $device = '' ) {
70 $typographyGlobal = ( isset( $attributes['shipping_heading_typograhyGlobal'] ) ? $attributes['shipping_heading_typograhyGlobal'] : '' );
71 $typography_value = isset( $attributes['shipping_heading_typography'] ) ?
72 Typography::get_css( $attributes['shipping_heading_typography'], '', $device, $typographyGlobal )
73 : [];
74
75 return array_merge(
76 [ 'color' => Color::get_css( isset( $attributes['shipping_heading_color'] ) ? $attributes['shipping_heading_color'] : '' ) ],
77 $typography_value,
78 );
79
80 }
81
82 public function get_shipping_heading_hover_css( $attributes, $device = '' ) {
83 return [ 'color' => Color::get_css( isset( $attributes['shipping_heading_hover_color'] ) ? $attributes['shipping_heading_hover_color'] : '' ) ];
84 }
85 public function get_shipping_address_css( $attributes, $device = '' ) {
86 $typographyGlobal = ( isset( $attributes['shipping_address_typographyGlobal'] ) ? $attributes['shipping_address_typograhyGlobal'] : '' );
87 $typography_value = isset( $attributes['shipping_address_typography'] ) ?
88 Typography::get_css( $attributes['shipping_address_typography'], '', $device, $typographyGlobal )
89 : [];
90
91 return array_merge(
92 [ 'color' => Color::get_css( isset( $attributes['shipping_address_color'] ) ? $attributes['shipping_address_color'] : '' ) ],
93 $typography_value,
94 );
95
96 }
97
98 public function get_shipping_address_hover_css( $attributes, $device = '' ) {
99 return [ 'color' => Color::get_css( isset( $attributes['shipping_address_hover_color'] ) ? $attributes['shipping_address_hover_color'] : '' ) ];
100 }
101
102 public function render_block_content( $attributes, $content, $block_instance ) {
103 // StoreEngine core falls back to sample content when there's no real
104 // order (e.g. in the editor), so no dummy flag is needed here.
105 echo do_shortcode( '[storeengine_order_shipping_address]' );
106 }
107
108 }
109