BuyButton.php
3 months ago
CartMenuIcon.php
5 months ago
CollectionTag.php
1 year ago
CollectionTags.php
1 year ago
Media.php
1 year ago
PriceChoiceTemplate.php
1 year ago
PriceChooser.php
4 months ago
PriceData.php
1 year ago
Product.php
4 months ago
ProductCard.php
10 months ago
ProductContent.php
10 months ago
ProductData.php
1 year ago
ProductLineItemNote.php
10 months ago
ProductQuickAddButton.php
10 months ago
ProductReviewAverageRatingStars.php
4 months ago
ProductReviewAverageRatingValue.php
4 months ago
ProductReviewBreakdown.php
4 months ago
ProductReviewContent.php
4 months ago
ProductReviewList.php
2 months ago
ProductReviewRating.php
4 months ago
ProductReviewTotalRating.php
4 months ago
ProductReviews.php
4 months ago
Quantity.php
10 months ago
SaleBadge.php
1 year ago
SelectedPriceAdHocAmount.php
1 year ago
VariantPill.php
6 months ago
VariantPills.php
1 year ago
CartMenuIcon.php
157 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Integrations\Bricks\Elements; |
| 4 | |
| 5 | use SureCart\Integrations\Bricks\Concerns\ConvertsBlocks; |
| 6 | |
| 7 | if ( ! defined( 'ABSPATH' ) ) { |
| 8 | exit; // Exit if accessed directly. |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Cart Menu Icon element. |
| 13 | */ |
| 14 | class CartMenuIcon extends \Bricks\Element { |
| 15 | use ConvertsBlocks; // we have to use a trait since we can't extend the surecart class. |
| 16 | |
| 17 | /** |
| 18 | * Element category. |
| 19 | * |
| 20 | * @var string |
| 21 | */ |
| 22 | public $category = 'SureCart Elements'; |
| 23 | |
| 24 | /** |
| 25 | * Element name. |
| 26 | * |
| 27 | * @var string |
| 28 | */ |
| 29 | public $name = 'surecart-cart-icon'; |
| 30 | |
| 31 | /** |
| 32 | * Element block name. |
| 33 | * |
| 34 | * @var string |
| 35 | */ |
| 36 | public $block_name = 'surecart/cart-menu-icon-button'; |
| 37 | |
| 38 | /** |
| 39 | * Element icon. |
| 40 | * |
| 41 | * @var string |
| 42 | */ |
| 43 | public $icon = 'ti-bag'; |
| 44 | |
| 45 | /** |
| 46 | * Cart icon. |
| 47 | * |
| 48 | * @var string |
| 49 | */ |
| 50 | public $cart_icon = ''; |
| 51 | |
| 52 | /** |
| 53 | * Get element label. |
| 54 | * |
| 55 | * @return string |
| 56 | */ |
| 57 | public function get_label() { |
| 58 | return esc_html__( 'Cart Toggle Icon', 'surecart' ); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Set controls. |
| 63 | * |
| 64 | * @return void |
| 65 | */ |
| 66 | public function set_controls() { |
| 67 | $this->controls['cart_icon'] = [ |
| 68 | 'label' => esc_html__( 'Icon', 'surecart' ), |
| 69 | 'type' => 'icon', |
| 70 | 'default' => [ |
| 71 | 'library' => 'ionicons', |
| 72 | 'icon' => 'ion-md-cart', |
| 73 | ], |
| 74 | ]; |
| 75 | |
| 76 | $this->controls['cart_menu_always_shown'] = [ |
| 77 | 'label' => esc_html__( 'Always show cart menu', 'surecart' ), |
| 78 | 'type' => 'checkbox', |
| 79 | 'default' => true, |
| 80 | ]; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Render element. |
| 85 | * |
| 86 | * @return void |
| 87 | */ |
| 88 | public function render() { |
| 89 | $settings = $this->settings; |
| 90 | |
| 91 | $this->set_attribute( '_root', 'class', 'wp-block-surecart-cart-menu-icon-button' ); |
| 92 | |
| 93 | if ( ! empty( $settings['size'] ) ) { |
| 94 | $this->set_attribute( '_root', 'class', $settings['size'] ); |
| 95 | } |
| 96 | |
| 97 | // Outline. |
| 98 | if ( isset( $settings['outline'] ) ) { |
| 99 | $this->set_attribute( '_root', 'class', 'outline' ); |
| 100 | } |
| 101 | |
| 102 | if ( ! empty( $settings['style'] ) ) { |
| 103 | // Outline (border). |
| 104 | if ( isset( $settings['outline'] ) ) { |
| 105 | $this->set_attribute( '_root', 'class', "bricks-color-{$settings['style']}" ); |
| 106 | } else { // Background (= default). |
| 107 | $this->set_attribute( '_root', 'class', "bricks-background-{$settings['style']}" ); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | $cart_menu_always_shown = ! empty( $settings['cart_menu_always_shown'] ) ? true : false; |
| 112 | |
| 113 | if ( ! empty( $settings['cart_icon'] ) ) { |
| 114 | $this->cart_icon = self::render_icon( |
| 115 | $settings['cart_icon'], |
| 116 | [ 'icon' ] |
| 117 | ); |
| 118 | } |
| 119 | |
| 120 | // Filter cart icon. |
| 121 | add_filter( 'sc_cart_menu_icon', [ $this, 'render_bricks_icon' ] ); |
| 122 | |
| 123 | if ( $this->is_admin_editor() ) { |
| 124 | $content = '<div class="sc-cart-icon" style="font-size: var(--sc-cart-icon-size, 1.1em); cursor: pointer; position: relative;" aria-label="' . esc_attr__( 'Open cart', 'surecart' ) . '">'; |
| 125 | $content .= $this->cart_icon; |
| 126 | $content .= '<span class="sc-cart-count" style="box-sizing: border-box; position: absolute; inset: -12px -16px auto auto; text-align: center; font-size: 10px; font-weight: bold; border-radius: var(--sc-cart-icon-counter-border-radius, 9999px); color: var(--sc-cart-icon-counter-color, var(--sc-color-primary-text, var(--sc-color-white))); background: var(--sc-cart-icon-counter-background, var(--sc-color-primary-500)); box-shadow: var(--sc-cart-icon-box-shadow, var(--sc-shadow-x-large)); padding: 2px 6px; line-height: 14px; min-width: 14px; z-index: 1;">2</span>'; |
| 127 | $content .= '</div>'; |
| 128 | |
| 129 | echo $this->preview( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 130 | $content, |
| 131 | '', |
| 132 | 'a' |
| 133 | ); |
| 134 | } else { |
| 135 | echo $this->html( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 136 | [ |
| 137 | 'cart_menu_always_shown' => $cart_menu_always_shown, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 138 | ] |
| 139 | ); |
| 140 | } |
| 141 | |
| 142 | // Remove cart icon filter after rendering. |
| 143 | remove_filter( 'sc_cart_menu_icon', [ $this, 'render_bricks_icon' ] ); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Render Bricks icon. |
| 148 | * |
| 149 | * @param string $icon Icon. |
| 150 | * |
| 151 | * @return string |
| 152 | */ |
| 153 | public function render_bricks_icon( $icon ): string { |
| 154 | return $this->cart_icon ?? $icon; |
| 155 | } |
| 156 | } |
| 157 |