PluginProbe
Support Genix – Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System / trunk
Support Genix – Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System vtrunk
1.4.54 1.4.53 1.4.52 1.4.51 1.4.50 1.4.49 1.4.48 1.4.47 1.4.46 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 All 102 releases
support-genix-lite / support-genix-lite.php

support-genix-lite.php in Support Genix – Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System trunk, at support-genix-lite.php

58 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Support Genix Lite
4 * Plugin URI: https://supportgenix.com
5 * Description: Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System.
6 * Version: 1.4.54
7 * Author: Devitems
8 * Author URI: https://devitems.com
9 * License: GPL v2 or later
10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
11 * Text Domain: support-genix-lite
12 * Domain Path: /languages
13 * Requires at least: 6.0
14 * Requires PHP: 7.4
15 */
16
17 defined('ABSPATH') || exit;
18
19 global $wpdb;
20 $apbdWpSupportLiteLoad = false;
21 $apbdWpSupportLiteFile = __FILE__;
22 $apbdWpSupportLitePath = dirname($apbdWpSupportLiteFile);
23 $apbdWpSupportLiteVersion = '1.4.54';
24
25 if (!defined('SUPPORT_GENIX_LITE_FILE_PATH')) {
26 define('SUPPORT_GENIX_LITE_FILE_PATH', $apbdWpSupportLitePath);
27 }
28
29 if (!defined('SUPPORT_GENIX_LITE_VERSION')) {
30 define('SUPPORT_GENIX_LITE_VERSION', $apbdWpSupportLiteVersion);
31 }
32
33 include_once ABSPATH . 'wp-admin/includes/plugin.php';
34 include_once $apbdWpSupportLitePath . '/appcore/ApbdWps_DiagnosticData.php';
35 include_once $apbdWpSupportLitePath . '/appcore/ApbdWps_LoaderLite.php';
36 // include_once $apbdWpSupportLitePath . '/appcore/ApbdWps_OfferLite.php';
37 include_once $apbdWpSupportLitePath . '/appcore/ApbdWps_HTNewsAPI.php';
38 include_once $apbdWpSupportLitePath . '/appcore/ApbdWps_DeactiveFeedback.php';
39
40 $apbdWpSupportLiteLoad = ApbdWps_LoaderLite::isReadyToLoad($apbdWpSupportLiteFile, $apbdWpSupportLiteVersion);
41
42 if (true === $apbdWpSupportLiteLoad) {
43 include_once $apbdWpSupportLitePath . '/appcore/ApbdWps_Promo.php';
44
45 include_once $apbdWpSupportLitePath . '/core/helper.php';
46 include_once $apbdWpSupportLitePath . '/appcore/plugin_helper.php';
47 include_once $apbdWpSupportLitePath . '/appcore/docs_helper.php';
48 include_once $apbdWpSupportLitePath . '/appcore/ApbdWps_SupportLite.php';
49 include_once $apbdWpSupportLitePath . '/templates/functions.php';
50 include_once $apbdWpSupportLitePath . '/appcore/loco_extractor.php';
51
52 $apbdWpSupportLitePos = new ApbdWps_SupportLite($apbdWpSupportLiteFile, $apbdWpSupportLiteVersion);
53 $apbdWpSupportLitePos->StartPlugin();
54
55 // Deactivation hook.
56 register_deactivation_hook($apbdWpSupportLiteFile, [$apbdWpSupportLitePos, 'OnDeactive']);
57 }
58