HEX
Server: Apache
System: Linux 162-240-236-42.bluehost.com 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
User: bt667 (1004)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/bt667/www/wp-content/plugins/mvp_upselling/mvp-upselling.php
<?php
/**
 * Plugin Name:       MVP Upselling
 * Plugin URI:        #
 * Description:       MVP Upselling
 * Version:           1.1.0
 * Author:            Rohit Sharma
 * Author URI:        http://kvelltechnologies.com/
 * License:           GPL-2.0+
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain:       MVP Upselling
 * Domain Path:       /languages
 */
if ( !defined( 'ABSPATH' ) ) exit;
define( 'MVP_UPSELLING_APP_DIRNAME', basename( dirname( __FILE__ ) ) );
define( 'MVP_UPSELLING_APP_RELPATH', basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) );
define( 'MVP_UPSELLING_APP_PATH', plugin_dir_path( __FILE__ ) );
define( 'MVP_UPSELLING_APP_URL', plugin_dir_url( __FILE__ ) );
define( 'MVP_UPSELLING_APP_PREFIX', 'app' );
/**
 *	@descripiton 	This function wil import the listing table on activation
 *	@param 			NONE
 *	@return 		NONE
 */

//	Include Bridge File
require plugin_dir_path( __FILE__ ) . 'includes/mvp-upselling-importer.php';

/**
 *	@description  This function will load the bridge file for the plugin
 *	@param 	    NONE
 *	@return     NONE
 */

function run_mvp_upselling() {
    $plugin = new MVP_Upselling_Importer();
}
run_MVP_UPSELLING();