| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/betterdocs-pro/ |
Upload File : |
<?php
/**
*
* @link https://wpdeveloper.com
* @since 1.0.0
* @package Betterdocs_Pro
*
* @wordpress-plugin
* Plugin Name: BetterDocs Pro
* Plugin URI: https:/betterdocs.co
* Description: Help your customers browse the docs and find instant answers through BetterDocs Instant Answers. Get access to Multiple KB, Insightful Analytics & many more!
* Version: 3.0.2
* Author: WPDeveloper
* Author URI: https://wpdeveloper.com
* License: GPL-3.0+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Text Domain: betterdocs-pro
* Domain Path: /languages
*/
// If this file is called directly, abort.
defined( 'ABSPATH' ) || exit;
define( 'BETTERDOCS_PRO_FILE', __FILE__ );
require_once __DIR__ . '/vendor/autoload.php';
/**
* Intiate the BetterDocs (Pro) Plugin
*
* @package WP-Background-Processing
*/
function betterdocs_pro() {
return \WPDeveloper\BetterDocsPro\Plugin::get_instance();
}
/**
* Initialize BetterDocs (Pro)
* Here, begins the execution of the plugin.
*
* Returns the main instance of BetterDocs Pro.
*
* @since 3.0
* @return \WPDeveloper\BetterDocsPro\Plugin
*/
betterdocs_pro();