| 1 |
<?php |
| 2 |
|
| 3 |
namespace SureCartBlocks\Blocks\Product\CollectionBadges; |
| 4 |
|
| 5 |
use SureCartBlocks\Blocks\Product\ProductBlock; |
| 6 |
use SureCartBlocks\Util\BlockStyleAttributes; |
| 7 |
|
| 8 |
/** |
| 9 |
* Product Collection Block |
| 10 |
*/ |
| 11 |
class Block extends ProductBlock { |
| 12 |
/** |
| 13 |
* Render the block |
| 14 |
* |
| 15 |
* @param array $attributes Block attributes. |
| 16 |
* @param string $content Post content. |
| 17 |
* |
| 18 |
* @return string |
| 19 |
*/ |
| 20 |
public function render( $attributes, $content ) { |
| 21 |
return \SureCart::block() |
| 22 |
->productCollectionBadgesMigration( $attributes, $this->block ) |
| 23 |
->render(); |
| 24 |
} |
| 25 |
} |
| 26 |
|