PluginProbe
MxChat – AI Chatbot & Content Generation for WordPress / 2.0.5
MxChat – AI Chatbot & Content Generation for WordPress v2.0.5
3.2.21 3.2.20 3.2.19 3.2.18 3.2.17 3.2.16 3.2.15 3.2.14 3.2.12 3.2.13 3.2.11 3.2.10 3.2.9 3.2.8 3.2.7 3.2.6 3.2.5 3.2.4 3.2.3 3.2.2 3.2.1 2.0.3 2.0.4 2.0.5 2.0.6 All 152 releases
mxchat-basic / includes / class-mxchat-addons.php

class-mxchat-addons.php in MxChat – AI Chatbot & Content Generation for WordPress 2.0.5, at includes/class-mxchat-addons.php

202 lines 9.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The admin-specific functionality for the Add Ons page.
4 *
5 * @package MxChat
6 * @subpackage MxChat/admin
7 */
8 class MxChat_Addons {
9 /**
10 * Store add-on configuration data
11 *
12 * @var array
13 */
14 private $addons_config;
15
16 /**
17 * Initialize the class and set its properties.
18 */
19 public function __construct() {
20 $this->addons_config = array(
21 'mxchat-pinecone' => array(
22 'title' => __('Pinecone DB Manager', 'mxchat'),
23 'description' => __('Seamlessly manage your vectorized content in Pinecone\'s vector database directly from your WordPress dashboard. This integration provides an efficient alternative to the default WordPress database storage.', 'mxchat'),
24 'license' => 'free',
25 'accent' => '#fa73e6',
26 'url' => 'https://quickdeploywp.com/plugin/mxchat-pinecone/',
27 'plugin_file' => 'mxchat-pinecone/pinecone-manager.php',
28 'config_page' => 'mxchat-pinecone'
29 ),
30 'mxchat-forms' => array(
31 'title' => __('MxChat Forms', 'mxchat'),
32 'description' => __('Create and manage smart forms that automatically trigger during chat conversations. Build custom forms with multiple field types, collect submissions, and export data—all seamlessly integrated with MxChat\'s intent system. No coding required, just intuitive form building for enhanced chat interactions.', 'mxchat'),
33 'license' => 'MxChat PRO',
34 'accent' => '#fa73e6',
35 'url' => 'https://quickdeploywp.com/plugin/mxchat-forms/',
36 'plugin_file' => 'mxchat-forms/mxchat-forms.php',
37 'config_page' => 'mxchat-forms'
38 ),
39
40 'mxchat-woo' => array(
41 'title' => __('MxChat WooCommerce', 'mxchat'),
42 'description' => __('Enhance your WooCommerce store with AI-powered chat interactions. This add-on enables intelligent product recommendations, order history retrieval, cart management, and seamless checkout assistance—fully integrated with MxChat\'s intent system.', 'mxchat'),
43 'license' => 'MxChat PRO',
44 'accent' => '#fa73e6',
45 'url' => 'https://quickdeploywp.com/plugin/mxchat-woo/',
46 'plugin_file' => 'mxchat-woo/mxchat-woo.php',
47 'config_page' => 'mxchat-woo'
48 ),
49 'mxchat-theme' => array(
50 'title' => __('MxChat Theme Customizer', 'mxchat'),
51 'description' => __('MxChat Theme Customizer is a powerful add-on for MxChat Pro that makes it effortless to personalize your chatbot’s appearance. With an intuitive color picker, you can instantly adjust background colors, and interface elements—all with real-time previews. No coding required, just simple, live customization to match your brand’s look.', 'mxchat'),
52 'license' => 'MxChat PRO',
53 'accent' => '#fa73e6',
54 'url' => 'https://quickdeploywp.com/plugin/mxchat-theme/',
55 'plugin_file' => 'mxchat-theme/mxchat-theme.php',
56 'config_page' => 'mxchat-theme-settings'
57 ),
58 'mxchat-moderation' => array(
59 'title' => __('MxChat Moderation', 'mxchat'),
60 'description' => __('MxChat Moderation is the ultimate add-on for MxChat, giving you full control over who interacts with your chatbot. Effortlessly block spammers, trolls, or unwanted users using IP and email-based bans—keeping your chat clean, safe, and enjoyable. Say goodbye to disruptive users and hello to a smoother, more secure chatbot experience!', 'mxchat'),
61 'license' => 'MxChat PRO',
62 'accent' => '#fa73e6',
63 'url' => 'https://quickdeploywp.com/plugin/mxchat-moderation/',
64 'plugin_file' => 'mxchat-moderation/mx-chat-moderation.php',
65 'config_page' => 'mx-chat-moderation'
66 ),
67 'mxchat-intent-tester' => array(
68 'title' => __('MxChat Intent Tester', 'mxchat'),
69 'description' => __('MxChat Intent Tester is an essential add-on for MxChat Pro, empowering you to optimize your chatbot’s intent recognition. Test user queries against your defined intents, view similarity scores, and fine-tune thresholds to ensure accurate responses. Perfect for admins who want to enhance their chatbot’s performance with precision!', 'mxchat'),
70 'license' => 'MxChat PRO',
71 'accent' => '#fa73e6',
72 'url' => 'https://quickdeploywp.com/plugin/mxchat-intent-tester/',
73 'plugin_file' => 'mxchat-intent-tester/mxchat-intent-tester.php',
74 'config_page' => 'mxchat-intent-tester'
75 ),
76
77 );
78 }
79
80 /**
81 * Register the stylesheets for the admin area.
82 */
83 public function enqueue_styles() {
84 $plugin_version = '2.0.5';
85
86 wp_enqueue_style(
87 'mxchat-addons',
88 plugin_dir_url(__FILE__) . '../css/admin-add-ons.css',
89 array(),
90 $plugin_version,
91 'all'
92 );
93 }
94
95 /**
96 * Check if an addon is installed and active
97 *
98 * @param string $plugin_file The plugin's main file path
99 * @return array Status information
100 */
101 private function get_addon_status($plugin_file) {
102 if (!function_exists('get_plugins')) {
103 require_once ABSPATH . 'wp-admin/includes/plugin.php';
104 }
105
106 $all_plugins = get_plugins();
107 $active_plugins = get_option('active_plugins', array());
108
109 // Find the addon by iterating through configs
110 $config_page = '';
111 foreach ($this->addons_config as $slug => $addon) {
112 if ($addon['plugin_file'] === $plugin_file) {
113 $config_page = $addon['config_page'];
114 break;
115 }
116 }
117
118 if (isset($all_plugins[$plugin_file])) {
119 if (in_array($plugin_file, $active_plugins)) {
120 return array(
121 'status' => 'active',
122 'action_url' => admin_url('admin.php?page=' . $config_page),
123 'action_text' => __('Configure', 'mxchat')
124 );
125 } else {
126 return array(
127 'status' => 'inactive',
128 'action_url' => wp_nonce_url(
129 admin_url('plugins.php?action=activate&plugin=' . $plugin_file),
130 'activate-plugin_' . $plugin_file
131 ),
132 'action_text' => __('Activate', 'mxchat')
133 );
134 }
135 }
136
137 return array(
138 'status' => 'not-installed',
139 'action_url' => '',
140 'action_text' => __('Get Extension', 'mxchat')
141 );
142 }
143
144 /**
145 * Render the Add Ons page content.
146 */
147 public function render_page() {
148 $this->enqueue_styles();
149 ?>
150 <div class="wrap mxchat-addons-wrapper">
151 <div class="mxchat-addons-hero">
152 <h1 class="mxchat-main-title">
153 <span class="mxchat-gradient-text">Power Up</span> Your Chatbot
154 </h1>
155 <p class="mxchat-hero-subtitle">
156 <?php esc_html_e('Enhance your chatbot with premium & free extensions available through QuickDeployWP, an official distribution platform made by MxChat.', 'mxchat'); ?>
157 </p>
158 </div>
159 <div class="mxchat-addons-grid">
160 <?php
161 foreach ($this->addons_config as $slug => $addon) {
162 $this->render_addon_card($slug, $addon);
163 }
164 ?>
165 </div>
166 </div>
167 <?php
168 }
169
170 /**
171 * Render individual add-on card
172 *
173 * @param string $slug The addon slug
174 * @param array $addon The addon configuration array
175 */
176 private function render_addon_card($slug, $addon) {
177 $status_info = $this->get_addon_status($addon['plugin_file']);
178 $button_url = $status_info['status'] === 'not-installed' ? $addon['url'] : $status_info['action_url'];
179 $button_target = $status_info['status'] === 'not-installed' ? '_blank' : '_self';
180 ?>
181 <div class="mxchat-addon-card" style="--card-accent: <?php echo esc_attr($addon['accent']); ?>">
182 <div class="mxchat-addon-badge"><?php echo esc_html(ucfirst($addon['license'])); ?></div>
183 <div class="mxchat-addon-content">
184 <h3 class="mxchat-addon-title"><?php echo esc_html($addon['title']); ?></h3>
185 <p class="mxchat-addon-description"><?php echo esc_html($addon['description']); ?></p>
186 <div class="mxchat-addon-footer">
187 <div class="mxchat-status-indicator <?php echo esc_attr($status_info['status']); ?>">
188 <?php echo esc_html(ucfirst(str_replace('-', ' ', $status_info['status']))); ?>
189 </div>
190 <a href="<?php echo esc_url($button_url); ?>"
191 class="mxchat-action-button"
192 target="<?php echo esc_attr($button_target); ?>"
193 data-action="<?php echo esc_attr($status_info['status']); ?>">
194 <?php echo esc_html($status_info['action_text']); ?>
195 </a>
196 </div>
197 </div>
198 </div>
199 <?php
200 }
201 }
202