PluginProbe
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder / 51.1.84
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder v51.1.84
51.1.86 51.1.84 51.1.85 51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 All 40 releases
king-addons / includes / helpers / Woo_Builder / Abstract_Checkout_Widget.php

Abstract_Checkout_Widget.php in King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder 51.1.84, at includes/helpers/Woo_Builder/Abstract_Checkout_Widget.php

104 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Base class for Checkout builder widgets.
4 *
5 * @package King_Addons
6 */
7
8 namespace King_Addons;
9
10 use Elementor\Widget_Base;
11 use King_Addons\Woo_Builder\Context as Woo_Context;
12
13 if (!defined('ABSPATH')) {
14 exit;
15 }
16
17 /**
18 * Provides checkout context utilities.
19 */
20 abstract class Abstract_Checkout_Widget extends Widget_Base
21 {
22 /**
23 * Check if we should render the widget.
24 * Returns true if in editor editing checkout template or on actual checkout page.
25 *
26 * @return bool
27 */
28 protected function should_render(): bool
29 {
30 if (!$this->can_use_builder_widgets()) {
31 return false;
32 }
33
34 // In editor mode editing checkout template
35 if (class_exists('King_Addons\\Woo_Builder\\Context') && Woo_Context::is_editing_template_type('checkout')) {
36 return true;
37 }
38
39 // On actual checkout page
40 if (function_exists('is_checkout') && is_checkout() && !is_order_received_page()) {
41 return true;
42 }
43
44 return false;
45 }
46
47 /**
48 * Cart / checkout / account builder widgets are a Pro feature.
49 *
50 * @return bool
51 */
52 protected function can_use_builder_widgets(): bool
53 {
54 return function_exists('king_addons_can_use_pro') && king_addons_can_use_pro();
55 }
56
57 /**
58 * Render placeholder when checkout context is missing.
59 *
60 * @return void
61 */
62 protected function render_missing_checkout_notice(): void
63 {
64 if (!class_exists('\Elementor\Plugin') || !\Elementor\Plugin::$instance->editor->is_edit_mode()) {
65 return;
66 }
67
68 if (!$this->can_use_builder_widgets()) {
69 $this->render_pro_required_notice();
70 return;
71 }
72
73 // Check if we're editing a Checkout template
74 if (class_exists('King_Addons\\Woo_Builder\\Context') && Woo_Context::is_editing_template_type('checkout')) {
75 // Don't show notice - we're in the right template type
76 return;
77 }
78
79 echo '<div class="king-addons-woo-builder-notice">' . esc_html__('This widget works only on the WooCommerce checkout page.', 'king-addons') . '</div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
80 }
81
82 /**
83 * Editor-only upsell when the site cannot use Pro.
84 *
85 * @return void
86 */
87 protected function render_pro_required_notice(): void
88 {
89 if (class_exists('King_Addons\\Core')) {
90 Core::renderEditorHint(esc_html__('Available in King Addons Pro.', 'king-addons'));
91 return;
92 }
93
94 echo '<div class="king-addons-woo-builder-notice">' . esc_html__('Available in King Addons Pro.', 'king-addons') . '</div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
95 }
96 }
97
98
99
100
101
102
103
104