block_name ); $css_generator->add_class_styles( '{{WRAPPER}} .ablocks-block-marquee .ablocks-block-marquee__children', $this->get_inner_block_css( $attributes ), $this->get_inner_block_css( $attributes, 'Tablet' ), $this->get_inner_block_css( $attributes, 'Mobile' ) ); return $css_generator->generate_css(); } public function build_css_v2( $attributes ) { // Generate CSS start $css_generator = new CssGeneratorV2( $attributes, $this->block_name ); $css_generator->add_class_styles( '{{WRAPPER}} .ablocks-block-marquee .ablocks-block-marquee__children', $this->get_inner_block_css( $attributes ), $this->get_inner_block_css( $attributes, 'Tablet' ), $this->get_inner_block_css( $attributes, 'Mobile' ) ); return $css_generator->generate_css(); } public function build_css( $attributes ) { if ( isset( $attributes['blockVersion'] ) && (int) $attributes['blockVersion'] === 2 ) { return $this->build_css_v2( $attributes ); } return $this->build_css_v1( $attributes ); } public function get_inner_block_css( $attributes, $device = '' ) { $css = []; if ( ! empty( $attributes['gap'][ 'value' . $device ] ) ) { $gap_value = $attributes['gap'][ 'value' . $device ]; $gap_unit = ! empty( $attributes['gap'][ 'valueUnit' . $device ] ) ? $attributes['gap'][ 'valueUnit' . $device ] : 'px'; $css['gap'] = $gap_value . $gap_unit; } return array_merge( Range::get_css([ 'attributeValue' => $attributes['gap'], 'attribute_object_key' => 'value', 'isResponsive' => true, 'defaultValue' => 12, 'hasUnit' => false, 'unitDefaultValue' => 'px', 'property' => 'gap', 'device' => $device, ]), $css ); } }