| 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 |
|