Changeset 3460981
- Timestamp:
- 02/13/2026 06:28:52 PM (6 weeks ago)
- Location:
- bubblav-chat/trunk
- Files:
-
- 1 added
- 3 edited
-
bubblav-chat.php (modified) (1 diff)
-
includes/class-bubblav-admin.php (modified) (2 diffs)
-
includes/class-bubblav-core.php (modified) (2 diffs)
-
includes/class-bubblav-rest-api.php (added)
Legend:
- Unmodified
- Added
- Removed
-
bubblav-chat/trunk/bubblav-chat.php
r3455597 r3460981 4 4 * Plugin URI: https://www.bubblav.com/integrations/wordpress 5 5 * Description: AI chatbot and AI assistant for customer support. One-click installation, no coding required. Provide instant 24/7 support with an AI chatbot that learns from your website content. Perfect for WooCommerce stores. 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Requires at least: 6.0 8 8 * Requires PHP: 7.4 -
bubblav-chat/trunk/includes/class-bubblav-admin.php
r3454919 r3460981 312 312 $hosts[] = 'www.bubblav.com'; 313 313 $hosts[] = 'bubblav.com'; 314 $hosts[] = 'test-app2.nport.link'; 314 315 return $hosts; 315 316 } … … 411 412 update_option( 'bubblav_auth_token', $this->encrypt_api_key( $auth_token ) ); 412 413 414 // Store api_token for REST API authentication (unencrypted for database lookup). 415 update_option( 'bubblav_api_token', $auth_token ); 416 413 417 add_settings_error( 414 418 'bubblav_messages', -
bubblav-chat/trunk/includes/class-bubblav-core.php
r3454919 r3460981 38 38 39 39 /** 40 * REST API instance 41 * 42 * @var Bubblav_REST_API|null 43 */ 44 private $rest_api = null; 45 46 /** 40 47 * Initialize the plugin 41 48 * … … 56 63 */ 57 64 private function init_components() { 58 // Always initialize admin and widget. 59 $this->admin = new Bubblav_Admin(); 60 $this->widget = new Bubblav_Widget(); 65 // Always initialize admin, widget, and REST API. 66 $this->admin = new Bubblav_Admin(); 67 $this->widget = new Bubblav_Widget(); 68 $this->rest_api = new Bubblav_REST_API(); 69 70 // Initialize REST API routes. 71 $this->rest_api->init(); 61 72 62 73 // Check for WooCommerce.
Note: See TracChangeset
for help on using the changeset viewer.