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-mini-cart / block.php

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

120 lines 4.1 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\StoreengineMiniCart;
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-mini-cart';
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-mini-cart-link svg',
33 $this->get_icon_button_css( $attributes, '' ),
34 $this->get_icon_button_css( $attributes, 'Tablet' ),
35 $this->get_icon_button_css( $attributes, 'Mobile' )
36 );
37 $css_generator->add_class_styles(
38 '{{WRAPPER}} .storeengine-mini-cart',
39 $this->get_wrapper_css( $attributes, '' ),
40 $this->get_wrapper_css( $attributes, 'Tablet' ),
41 $this->get_wrapper_css( $attributes, 'Mobile' )
42 );
43 $css_generator->add_class_styles(
44 '{{WRAPPER}} .storeengine-mini-cart-link svg:hover',
45 $this->get_icon_button_hover_css( $attributes, '' ),
46 $this->get_icon_button_hover_css( $attributes, 'Tablet' ),
47 $this->get_icon_button_hover_css( $attributes, 'Mobile' )
48 );
49 $css_generator->add_class_styles(
50 '{{WRAPPER}} .storeengine-mini-cart>button.storeengine-mini-cart-link>.storeengine-min-cart-count',
51 $this->get_icon_text_css( $attributes, '' ),
52 $this->get_icon_text_css( $attributes, 'Tablet' ),
53 $this->get_icon_text_css( $attributes, 'Mobile' )
54 );
55 $css_generator->add_class_styles(
56 '{{WRAPPER}} .storeengine-mini-cart>button.storeengine-mini-cart-link>.storeengine-min-cart-count:hover',
57 $this->get_icon_text_hover_css( $attributes, '' ),
58 $this->get_icon_text_hover_css( $attributes, 'Tablet' ),
59 $this->get_icon_text_hover_css( $attributes, 'Mobile' )
60 );
61
62 return $css_generator->generate_css();
63 }
64
65 public function build_css( $attributes ) {
66 if ( isset( $attributes['blockVersion'] ) && (int) $attributes['blockVersion'] === 2 ) {
67 return $this->build_css_v2( $attributes );
68 }
69 return $this->build_css_v1( $attributes );
70 }
71
72 public function get_icon_button_css( $attributes, $device = '' ) {
73 return array_merge(
74 [ 'color' => Color::get_css( isset( $attributes['iconColor'] ) ? $attributes['iconColor'] : '' ) ],
75 );
76 }
77
78 public function get_icon_button_hover_css( $attributes, $device = '' ) {
79 return [ 'color' => Color::get_css( isset( $attributes['iconColorH'] ) ? $attributes['iconColorH'] : '' ) ];
80
81 }
82 public function get_icon_text_css( $attributes, $device = '' ) {
83 $typographyValueGlobal = ! empty( $attributes['countTypographyGlobal'] ) ? $attributes['countTypographyGlobal'] : '';
84 $typography_css = isset( $attributes['countTypography'] )
85 ? Typography::get_css( $attributes['countTypography'], '', $device, $typographyValueGlobal )
86 : [];
87
88 return array_merge(
89 $typography_css,
90 [ 'color' => Color::get_css( isset( $attributes['countColor'] ) ? $attributes['countColor'] : '' ) ],
91 [ 'background' => Color::get_css( isset( $attributes['countBg'] ) ? $attributes['countBg'] : '' ) ],
92 );
93 }
94
95 public function get_wrapper_css( $attributes, $device = '' ) {
96 $css_padding = [];
97
98 if ( ! empty( $attributes['padding'] ) ) {
99 $css_padding = Dimensions::get_css( $attributes['padding'], 'padding', $device );
100 }
101
102 return $css_padding;
103 }
104
105 public function get_icon_text_hover_css( $attributes, $device = '' ) {
106 return array_merge(
107 [ 'color' => Color::get_css( isset( $attributes['countColorH'] ) ? $attributes['countColorH'] : '' ) ],
108 [ 'background' => Color::get_css( isset( $attributes['countBgH'] ) ? $attributes['countBgH'] : '' ) ],
109 );
110 }
111
112 public function render_block_content( $attributes, $content, $block_instance ) {
113 $attr_array = [];
114
115 $shortcode = '[storeengine_mini_cart ' . Helper::attr_shortcode( $attr_array ) . ']';
116 echo do_shortcode( $shortcode );
117 }
118
119 }
120