WC_Install::init()public staticWC 1.0

Hook in tabs.

Method of the class: WC_Install{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Install::init();

WC_Install::init() code WC 8.6.1

public static function init() {
	add_action( 'init', array( __CLASS__, 'check_version' ), 5 );
	add_action( 'init', array( __CLASS__, 'manual_database_update' ), 20 );
	add_action( 'woocommerce_newly_installed', array( __CLASS__, 'maybe_enable_hpos' ), 20 );
	add_action( 'admin_init', array( __CLASS__, 'wc_admin_db_update_notice' ) );
	add_action( 'admin_init', array( __CLASS__, 'add_admin_note_after_page_created' ) );
	add_action( 'woocommerce_run_update_callback', array( __CLASS__, 'run_update_callback' ) );
	add_action( 'woocommerce_update_db_to_current_version', array( __CLASS__, 'update_db_version' ) );
	add_action( 'admin_init', array( __CLASS__, 'install_actions' ) );
	add_action( 'woocommerce_page_created', array( __CLASS__, 'page_created' ), 10, 2 );
	add_filter( 'plugin_action_links_' . WC_PLUGIN_BASENAME, array( __CLASS__, 'plugin_action_links' ) );
	add_filter( 'plugin_row_meta', array( __CLASS__, 'plugin_row_meta' ), 10, 2 );
	add_filter( 'wpmu_drop_tables', array( __CLASS__, 'wpmu_drop_tables' ) );
	add_filter( 'cron_schedules', array( __CLASS__, 'cron_schedules' ) );
	self::add_action( 'admin_init', array( __CLASS__, 'newly_installed' ) );
}