PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
woocommerce-conversion-tracking
/
includes
<?php /** * The welcome class after install * * @since 1.1.0 */ class WCCT_Welcome_20 { function __construct() { add_action( 'admin_init', array( $this, 'redirect_to_page' ), 9999 ); add_action( 'wp_ajax_wcct_dismiss_notice', array( $this, 'dismiss_notice' ) ); } /** * Redirect to the welcome page once the plugin is installed * * @return void */ public function redirect_to_page() { if ( ! get_transient( 'wcct_upgrade_to_20' ) ) { return; } delete_transient( 'wcct_upgrade_to_20' ); // Only do this for single site installs. if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { return; } wp_safe_redirect( admin_url( 'admin.php?page=conversion-tracking¬ice=welcome' ) ); exit; } }
[+]
..
[+]
upgrades
[-] class-welcome-20.php
[edit]
[-] class-admin.php
[edit]
[-] class-integration-pro-features.php
[edit]
[-] class-event-dispatcher.php
[edit]
[-] class-ajax.php
[edit]
[-] class-abstract-integration.php
[edit]
[+]
views
[+]
integrations
[-] class-integration-manager.php
[edit]
[-] integration.php
[edit]
[-] class-upgrades.php
[edit]