Uname:Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64

403WebShell
403Webshell
Server IP : 146.59.209.152  /  Your IP : 216.73.216.152
Web Server : Apache
System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : monpetu ( 144298)
PHP Version : 7.4.33
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/monpetu/www/ipprint/wp-content/plugins/power-coupons/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/monpetu/www/ipprint/wp-content/plugins/power-coupons/power-coupons.php
<?php
/**
 * Plugin Name: Power Coupons for WooCommerce
 * Plugin URI: https://brainstormforce.com/
 * Description: Power Coupons is an advanced cart discount plugin for WooCommerce that helps you create discount rules, auto-apply coupons, and engaging cart incentives to boost conversions.
 * Version: 1.0.6
 * Author: Brainstorm Force
 * Author URI: https://www.brainstormforce.com
 * License: GPL v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: power-coupons
 * Domain Path: /languages
 * Requires at least: 6.0
 * Requires PHP: 7.4
 * WC requires at least: 3.0
 * WC tested up to: 8.0
 *
 * Requires Plugins: woocommerce
 *
 * @package Power_Coupons
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Set constants
 */
define( 'POWER_COUPONS_VERSION', '1.0.6' );
define( 'POWER_COUPONS_FILE', __FILE__ );
define( 'POWER_COUPONS_BASE', plugin_basename( POWER_COUPONS_FILE ) );
define( 'POWER_COUPONS_DIR', plugin_dir_path( POWER_COUPONS_FILE ) );
define( 'POWER_COUPONS_URL', plugins_url( '/', POWER_COUPONS_FILE ) );
define( 'POWER_COUPONS_PLUGIN_FILE', POWER_COUPONS_FILE );

if ( ! defined( 'POWER_COUPONS_ONBOARDING_USER_SUB_WORKFLOW_URL' ) ) {
	define( 'POWER_COUPONS_ONBOARDING_USER_SUB_WORKFLOW_URL', 'https://webhook.ottokit.com/ottokit/ae829303-5da9-4daf-85f5-bbda71586f8c' );
}

/**
 * Load the top level files.
 */
require_once POWER_COUPONS_DIR . 'includes/class-power-coupons-activator.php';
require_once POWER_COUPONS_DIR . 'includes/class-power-coupons-loader.php';

/**
 * Register activation and deactivation hooks
 */
register_activation_hook( POWER_COUPONS_FILE, array( 'Power_Coupons\Includes\Power_Coupons_Activator', 'activate' ) );
register_deactivation_hook( POWER_COUPONS_FILE, array( 'Power_Coupons\Includes\Power_Coupons_Activator', 'deactivate' ) );

/**
 * Begins execution of the plugin.
 *
 * @since 1.0.0
 * @return object initialized object of class.
 */
function power_coupons() {
	return Power_Coupons\Power_Coupons_Loader::get_instance();
}

// Kicking this off by calling 'get_instance()' method.
power_coupons();

/**
 * Redirect to onboarding page after plugin activation.
 *
 * @since 1.0.3
 * @return void
 */
function power_coupons_redirect_to_onboarding() {
	if ( ! get_transient( 'power_coupons_redirect_to_onboarding' ) ) {
		return;
	}

	// Avoid redirection in case of ajax calls.
	if ( wp_doing_ajax() ) {
		return;
	}

	$url = add_query_arg(
		array(
			'page'       => 'power_coupons_settings',
			'nonce'      => wp_create_nonce( 'power_coupons_onboarding_nonce' ),
			'onboarding' => 1,
		),
		admin_url( 'admin.php' )
	);

	delete_transient( 'power_coupons_redirect_to_onboarding' );

	wp_safe_redirect( $url );
	exit;
}
add_action( 'admin_init', 'power_coupons_redirect_to_onboarding' );


Youez - 2016 - github.com/yon3zu
LinuXploit