whoami7 - Manager
:
/
home
/
dataiclx
/
vielorbe.com
/
wp-content
/
plugins
/
surecart
/
packages
/
blocks
/
Blocks
/
StoreLogo
/
Upload File:
files >> //home/dataiclx/vielorbe.com/wp-content/plugins/surecart/packages/blocks/Blocks/StoreLogo/Block.php
<?php namespace SureCartBlocks\Blocks\StoreLogo; use SureCartBlocks\Blocks\BaseBlock; /** * Logout Button Block. */ class Block extends BaseBlock { /** * Render the block * * @param array $attributes Block attributes. * @param string $content Post content. * * @return string */ public function render( $attributes, $content ) { $logo = \SureCart::account()->brand->logo_url ?? ''; if ( empty( $logo ) ) { return; } $styles = 'object-fit: contain; object-position: left;'; if ( ! empty( $attributes['width'] ) ) { $styles .= 'width: ' . $attributes['width'] . 'px; '; $styles .= 'max-width: ' . $attributes['maxWidth'] . 'px; '; } if ( ! empty( $attributes['maxHeight'] ) ) { $styles .= 'max-height: ' . $attributes['maxHeight'] . 'px; '; } ob_start(); ?> <div> <?php if ( $attributes['isLinkToHome'] ) { ?> <a href="<?php echo esc_url( get_home_url() ); ?>" style="<?php echo esc_attr( $this->getStyles( $attributes ) ); ?> rel="home"> <?php } else { ?> <div style="<?php echo esc_attr( $this->getStyles( $attributes ) ); ?>"> <?php } ?> <img src="<?php echo esc_url( $logo ); ?>" style="<?php echo esc_attr( $styles ); ?>" alt="" /> <?php if ( $attributes['isLinkToHome'] ) { ?> </a> <?php } else { ?> </div> <?php } ?> </div> <?php return ob_get_clean(); } }
Copyright ©2021 || Defacer Indonesia