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();