-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclientsync-support.php
More file actions
34 lines (29 loc) · 1.1 KB
/
Copy pathclientsync-support.php
File metadata and controls
34 lines (29 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* Plugin Name: ClientSync Support - AI Powered Customer Support Ticket System
* Description: ClientSync Support plugin for managing customer support tickets, AI-generated replies, and assign tickets to support staff.
* Plugin URI: https://github.com/aialvi/clientsync-support
* Version: 1.0.5
* Requires at least: 6.0
* Requires PHP: 7.4
* Author: clientsync
* Author URI: https://clientsync.tech
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: clientsync-support
*
* @package Clientsync
*/
namespace ClientSync\CS_Support;
if (! defined('ABSPATH')) {
exit; // Exit if accessed directly.
}
require_once __DIR__ . '/vendor/autoload.php';
require_once __DIR__ . '/includes/namespace.php';
require_once __DIR__ . '/includes/constants.php';
require_once __DIR__ . '/includes/api-schema.php';
bootstrap();
// Register deactivation hook to clean up scheduled events
register_deactivation_hook(__FILE__, function() {
\ClientSync\CS_Support\GDPR_Manager::deactivate();
});