AddToCartButton.php
3 months ago
CartMenuIcon.php
1 year ago
CollectionTags.php
1 year ago
Media.php
1 year ago
PriceChooser.php
1 year ago
Product.php
1 year ago
ProductCard.php
1 year ago
ProductContent.php
7 months ago
ProductLineItemNote.php
10 months ago
ProductPricing.php
1 year ago
ProductQuickAddButton.php
7 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
1 year ago
ReusableFormWidget.php
1 year ago
SaleBadge.php
1 year ago
SelectedPriceAdHocAmount.php
1 year ago
VariantPills.php
6 months ago
ProductContent.php
137 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Integrations\Elementor\Widgets; |
| 4 | |
| 5 | use ElementorPro\Modules\Posts\Skins\Skin_Content_Base; |
| 6 | |
| 7 | if ( ! defined( 'ABSPATH' ) ) { |
| 8 | exit; // Exit if accessed directly. |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Product Content widget. |
| 13 | */ |
| 14 | class ProductContent extends \Elementor\Widget_Base { |
| 15 | use Skin_Content_Base; |
| 16 | |
| 17 | /** |
| 18 | * Get widget name. |
| 19 | * |
| 20 | * @return string |
| 21 | */ |
| 22 | public function get_name() { |
| 23 | return 'surecart-product-content'; |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Get widget title. |
| 28 | * |
| 29 | * @return string |
| 30 | */ |
| 31 | public function get_title() { |
| 32 | return esc_html__( 'Product Content', 'surecart' ); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Get the widget categories. |
| 37 | * |
| 38 | * @return array |
| 39 | */ |
| 40 | public function get_categories() { |
| 41 | return array( 'surecart-elementor-elements' ); |
| 42 | } |
| 43 | |
| 44 | protected function register_controls() { |
| 45 | $this->start_controls_section( |
| 46 | 'section_style', |
| 47 | [ |
| 48 | 'label' => esc_html__( 'Style', 'surecart' ), |
| 49 | 'tab' => \Elementor\Controls_Manager::TAB_STYLE, |
| 50 | ] |
| 51 | ); |
| 52 | |
| 53 | $this->add_responsive_control( |
| 54 | 'align', |
| 55 | [ |
| 56 | 'label' => esc_html__( 'Alignment', 'surecart' ), |
| 57 | 'type' => \Elementor\Controls_Manager::CHOOSE, |
| 58 | 'options' => [ |
| 59 | 'left' => [ |
| 60 | 'title' => esc_html__( 'Left', 'surecart' ), |
| 61 | 'icon' => 'eicon-text-align-left', |
| 62 | ], |
| 63 | 'center' => [ |
| 64 | 'title' => esc_html__( 'Center', 'surecart' ), |
| 65 | 'icon' => 'eicon-text-align-center', |
| 66 | ], |
| 67 | 'right' => [ |
| 68 | 'title' => esc_html__( 'Right', 'surecart' ), |
| 69 | 'icon' => 'eicon-text-align-right', |
| 70 | ], |
| 71 | 'justify' => [ |
| 72 | 'title' => esc_html__( 'Justified', 'surecart' ), |
| 73 | 'icon' => 'eicon-text-align-justify', |
| 74 | ], |
| 75 | ], |
| 76 | 'selectors' => [ |
| 77 | '{{WRAPPER}}' => 'text-align: {{VALUE}};', |
| 78 | ], |
| 79 | ] |
| 80 | ); |
| 81 | |
| 82 | $this->add_control( |
| 83 | 'text_color', |
| 84 | [ |
| 85 | 'label' => esc_html__( 'Text Color', 'surecart' ), |
| 86 | 'type' => \Elementor\Controls_Manager::COLOR, |
| 87 | 'default' => '', |
| 88 | 'selectors' => [ |
| 89 | '{{WRAPPER}}' => 'color: {{VALUE}};', |
| 90 | ], |
| 91 | 'global' => [ |
| 92 | 'default' => \Elementor\Core\Kits\Documents\Tabs\Global_Colors::COLOR_TEXT, |
| 93 | ], |
| 94 | ] |
| 95 | ); |
| 96 | |
| 97 | $this->add_group_control( |
| 98 | \Elementor\Group_Control_Typography::get_type(), |
| 99 | [ |
| 100 | 'name' => 'typography', |
| 101 | 'global' => [ |
| 102 | 'default' => \Elementor\Core\Kits\Documents\Tabs\Global_Typography::TYPOGRAPHY_TEXT, |
| 103 | ], |
| 104 | ] |
| 105 | ); |
| 106 | |
| 107 | $this->end_controls_section(); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Render the widget content. |
| 112 | * |
| 113 | * This method is called to output the content of the widget. |
| 114 | * In editor mode, it displays a placeholder message. |
| 115 | * |
| 116 | * @return void |
| 117 | */ |
| 118 | protected function render() { |
| 119 | $product = sc_get_product(); |
| 120 | |
| 121 | if ( empty( $product ) || ( empty( get_the_content() ) && \Elementor\Plugin::$instance->editor->is_edit_mode() ) ) { |
| 122 | ?> |
| 123 | <div> |
| 124 | <p><?php esc_html_e( 'This section will display the content you create using the Content Designer on the Edit Product page.', 'surecart' ); ?></p> |
| 125 | <p><?php esc_html_e( 'Use this area to add detailed information about your product, such as features, specifications, and usage instructions.', 'surecart' ); ?></p> |
| 126 | <p><?php esc_html_e( 'In the template preview, you can see how the product\'s content will appear to customers.', 'surecart' ); ?></p> |
| 127 | <p><?php esc_html_e( 'Note: If you haven\'t added any content in the Content Designer, this area will remain empty. This text is for demonstration purposes only.', 'surecart' ); ?></p> |
| 128 | </div> |
| 129 | <?php |
| 130 | |
| 131 | return; |
| 132 | } |
| 133 | |
| 134 | $this->render_post_content( false, false ); |
| 135 | } |
| 136 | } |
| 137 |