D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
diafdxji
/
shihty.com
/
wp-content
/
plugins
/
surecart
/
packages
/
blocks
/
Blocks
/
CartSubmit
/
Filename :
Block.php
back
Copy
<?php namespace SureCartBlocks\Blocks\CartSubmit; use SureCartBlocks\Blocks\CartBlock; /** * Cart Submit Block */ class Block extends CartBlock { /** * Get the style for the block * * @param array $attr Style variables. * @param string $prefix Prefix for the css variable. * * @return string */ public function getVars( $attr, $prefix ) { $style = ''; // padding. if ( ! empty( $attr['style']['spacing']['padding'] ) ) { $padding = $attr['style']['spacing']['padding']; $style .= $prefix . '-padding-top: ' . $this->getSpacingPresetCssVar( array_key_exists( 'top', $padding ) ? $padding['top'] : '0' ) . ';'; $style .= $prefix . '-padding-bottom: ' . $this->getSpacingPresetCssVar( array_key_exists( 'bottom', $padding ) ? $padding['bottom'] : '0' ) . ';'; $style .= $prefix . '-padding-left: ' . $this->getSpacingPresetCssVar( array_key_exists( 'left', $padding ) ? $padding['left'] : '0' ) . ';'; $style .= $prefix . '-padding-right: ' . $this->getSpacingPresetCssVar( array_key_exists( 'right', $padding ) ? $padding['right'] : '0' ) . ';'; } // margin. if ( ! empty( $attr['style']['spacing']['margin'] ) ) { $margin = $attr['style']['spacing']['margin']; $style .= $prefix . '-margin-top: ' . $this->getSpacingPresetCssVar( array_key_exists( 'top', $margin ) ? $margin['top'] : '0' ) . ';'; $style .= $prefix . '-margin-bottom: ' . $this->getSpacingPresetCssVar( array_key_exists( 'bottom', $margin ) ? $margin['bottom'] : '0' ) . ';'; $style .= $prefix . '-margin-left: ' . $this->getSpacingPresetCssVar( array_key_exists( 'left', $margin ) ? $margin['left'] : '0' ) . ';'; $style .= $prefix . '-margin-right: ' . $this->getSpacingPresetCssVar( array_key_exists( 'right', $margin ) ? $margin['right'] : '0' ) . ';'; } // aspect ratio. if ( ! empty( $attr['ratio'] ) ) { $style .= $prefix . '-aspect-ratio: ' . $attr['ratio'] . ';'; } // border width. if ( ! empty( $attr['style']['border']['width'] ) ) { $style .= $prefix . '-border-width: ' . $attr['style']['border']['width'] . ';'; } // border radius. if ( ! empty( $attr['style']['border']['radius'] ) ) { $style .= $prefix . '-border-radius: ' . $attr['style']['border']['radius'] . ';'; } // font weight. if ( ! empty( $attr['style']['typography']['fontWeight'] ) ) { $style .= $prefix . '-font-weight: ' . $attr['style']['typography']['fontWeight'] . ';'; } // font size. if ( ! empty( $attr['fontSize'] ) || ! empty( $attr['style']['typography']['fontSize'] ) ) { $font_size = ! empty( $attr['fontSize'] ) ? $this->getFontSizePresetCssVar( $attr['fontSize'] ) : $attr['style']['typography']['fontSize']; $style .= $prefix . '-font-size: ' . $font_size . ';'; } // border color. if ( ! empty( $attr['borderColor'] ) || ! empty( $attr['style']['border']['color'] ) ) { $border_color = ! empty( $attr['borderColor'] ) ? $this->getColorPresetCssVar( $attr['borderColor'] ) : $attr['style']['border']['color']; $style .= $prefix . '-border-color: ' . $border_color . ';'; } // text color. if ( ! empty( $attr['textColor'] ) || ! empty( $attr['style']['color']['text'] ) ) { $text_color = ! empty( $attr['textColor'] ) ? $this->getColorPresetCssVar( $attr['textColor'] ) : $attr['style']['color']['text']; $style .= $prefix . '-text-color: ' . $text_color . ';'; } // background color. if ( ! empty( $attr['backgroundColor'] ) || ! empty( $attr['style']['color']['background'] ) ) { $text_color = ! empty( $attr['backgroundColor'] ) ? $this->getColorPresetCssVar( $attr['backgroundColor'] ) : $attr['style']['color']['background']; $style .= $prefix . '-background-color: ' . $text_color . ';'; } // text align. if ( ! empty( $attr['align'] ) ) { $style .= $prefix . '-align: ' . $attr['align'] . ';'; } if ( ! empty( $attr['width'] ) ) { $style .= $prefix . '-width: ' . $attr['width'] . '%;'; } return $style; } /** * Render the block * * @param array $attributes Block attributes. * @param string $content Post content. * * @return string */ public function render( $attributes, $content ) { ob_start(); ?> <div class="wp-block-buttons" style="<?php echo esc_attr( $this->getStyle( array_merge( $attributes, array_filter( [ 'backgroundColor' => $attributes['sectionBackgroundColor'] ?? '' ] ) ) ) ); ?>"> <sc-cart-submit class="wp-block-button"> <a href="<?php echo esc_attr( \SureCart::pages()->url( 'checkout' ) ); ?>" class="wp-block-button__link wp-element-button sc-button <?php echo esc_attr( $this->getClasses( $attributes ) ); ?>" style="<?php echo esc_attr( $this->getStyles( $attributes ) ); ?>"> <span data-text><?php echo wp_kses_post( $attributes['text'] ); ?></span> <sc-spinner data-loader></sc-spinner> </a> </sc-cart-submit> </div> <?php return ob_get_clean(); } }