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
ProductReviewTotalRating.php
146 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 | * Product Total Rating element. |
| 13 | */ |
| 14 | class ProductReviewTotalRating extends \Bricks\Element { |
| 15 | use ConvertsBlocks; |
| 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-product-review-total-rating'; |
| 30 | |
| 31 | /** |
| 32 | * Element block name. |
| 33 | * |
| 34 | * @var string |
| 35 | */ |
| 36 | public $block_name = 'surecart/product-review-total-rating'; |
| 37 | |
| 38 | /** |
| 39 | * Element icon. |
| 40 | * |
| 41 | * @var string |
| 42 | */ |
| 43 | public $icon = 'ti-write'; |
| 44 | |
| 45 | /** |
| 46 | * Get element label. |
| 47 | * |
| 48 | * @return string |
| 49 | */ |
| 50 | public function get_label() { |
| 51 | return esc_html__( 'Product Total Rating', 'surecart' ); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Set controls. |
| 56 | * |
| 57 | * @return void |
| 58 | */ |
| 59 | public function set_controls() { |
| 60 | $this->controls['show_for_zero_reviews'] = [ |
| 61 | 'tab' => 'content', |
| 62 | 'label' => esc_html__( 'Show For Zero Reviews', 'surecart' ), |
| 63 | 'type' => 'checkbox', |
| 64 | 'default' => true, |
| 65 | ]; |
| 66 | |
| 67 | $this->controls['show_label'] = [ |
| 68 | 'tab' => 'content', |
| 69 | 'label' => esc_html__( 'Show Label', 'surecart' ), |
| 70 | 'type' => 'checkbox', |
| 71 | 'default' => true, |
| 72 | ]; |
| 73 | |
| 74 | $this->controls['style_variant'] = [ |
| 75 | 'tab' => 'content', |
| 76 | 'label' => esc_html__( 'Style', 'surecart' ), |
| 77 | 'type' => 'select', |
| 78 | 'options' => [ |
| 79 | 'default' => esc_html__( 'Default', 'surecart' ), |
| 80 | 'plus-sign' => esc_html__( 'Plus Sign', 'surecart' ), |
| 81 | ], |
| 82 | 'default' => 'plus-sign', |
| 83 | 'inline' => true, |
| 84 | ]; |
| 85 | |
| 86 | $this->controls['link_to_reviews'] = [ |
| 87 | 'tab' => 'content', |
| 88 | 'label' => esc_html__( 'Link to Reviews', 'surecart' ), |
| 89 | 'type' => 'checkbox', |
| 90 | 'default' => false, |
| 91 | ]; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Render element. |
| 96 | * |
| 97 | * @return void |
| 98 | */ |
| 99 | public function render() { |
| 100 | $show_label = ! empty( $this->settings['show_label'] ); |
| 101 | $show_for_zero_reviews = ! empty( $this->settings['show_for_zero_reviews'] ); |
| 102 | $style_variant = ! empty( $this->settings['style_variant'] ) ? $this->settings['style_variant'] : 'default'; |
| 103 | $link_to_reviews = ! empty( $this->settings['link_to_reviews'] ); |
| 104 | |
| 105 | if ( $this->is_admin_editor() ) { |
| 106 | $this->render_preview( $show_label, $style_variant ); |
| 107 | return; |
| 108 | } |
| 109 | |
| 110 | // Determine class name based on style variant. |
| 111 | $class_name = 'default' !== $style_variant ? 'is-style-' . $style_variant : ''; |
| 112 | |
| 113 | $attributes = [ |
| 114 | 'show_label' => $show_label, |
| 115 | 'show_for_zero_reviews' => $show_for_zero_reviews, |
| 116 | 'link_to_reviews' => $link_to_reviews, |
| 117 | 'className' => $class_name, |
| 118 | ]; |
| 119 | |
| 120 | echo $this->html( $attributes ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Render preview in editor. |
| 125 | * |
| 126 | * @param bool $show_label Show label flag. |
| 127 | * @param string $style_variant Style variant. |
| 128 | * |
| 129 | * @return void |
| 130 | */ |
| 131 | private function render_preview( $show_label, $style_variant ) { |
| 132 | $plus_sign = 'plus-sign' === $style_variant ? '+' : ''; |
| 133 | $content = '<span class="sc-total-reviews-count">42' . $plus_sign . '</span>'; |
| 134 | |
| 135 | if ( $show_label ) { |
| 136 | $content .= ' ' . esc_html__( 'reviews', 'surecart' ); |
| 137 | } |
| 138 | |
| 139 | echo $this->preview( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 140 | $content, |
| 141 | 'wp-block-surecart-product-review-total-rating', |
| 142 | 'div' |
| 143 | ); |
| 144 | } |
| 145 | } |
| 146 |