PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.9.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.9.0
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 / academy-container / block.php

block.php in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.9.0, at includes/blocks/academy-container/block.php

60 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace ABlocks\Blocks\AcademyContainer;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit;
6 }
7
8 use ABlocks\Classes\BlockBaseAbstract;
9 use ABlocks\Classes\CssGeneratorV2;
10 use ABlocks\Controls\Alignment;
11 use ABlocks\Controls\Range;
12 use ABlocks\Controls\Dimensions;
13 use ABlocks\Helper;
14
15
16 class Block extends BlockBaseAbstract {
17 protected $parent_block_name = 'academy-certificate';
18 protected $block_name = 'academy-container';
19
20 public function build_css( $attributes ) {
21 $css_generator = new CssGeneratorV2( $attributes, $this->block_name );
22 $css_generator->add_class_styles(
23 '{{WRAPPER}} .academy-inner-container > div ',
24 $this->get_wrapper_css( $attributes ),
25 $this->get_wrapper_css( $attributes, 'Tablet' ),
26 $this->get_wrapper_css( $attributes, 'Mobile' )
27 );
28 return $css_generator->generate_css();
29 }
30
31 public function get_wrapper_css( $attributes, $device = '' ) {
32 $css = [];
33
34 $float_css = Alignment::get_css(
35 $attributes['floatAlignment'] ?? [],
36 'float',
37 $device
38 );
39
40 if ( isset( $float_css['float'] ) && 'default' === $float_css['float'] ) {
41 unset( $float_css['float'] );
42 }
43
44 return array_merge(
45 $css, $float_css,
46 Range::get_css([
47 'attributeValue' => $attributes['containerWidth'],
48 'attribute_object_key' => 'value',
49 'isResponsive' => true,
50 'defaultValue' => 200,
51 'hasUnit' => true,
52 'unitDefaultValue' => 'px',
53 'property' => 'width',
54 'device' => $device,
55 ]),
56 Dimensions::get_css( $attributes['floatMargin'] ?? [], 'margin', $device ),
57 );
58 }
59 }
60