You appear to be a bot. Output may be restricted
Description
Install actions when a update button is clicked within the admin area.
This function is hooked into admin_init to affect admin only.
Usage
WC_Install::install_actions();
Parameters
Returns
void
Source
File name: woocommerce/includes/class-wc-install.php
Lines:
1 to 7 of 7
public static function install_actions() { if ( ! empty( $_GET['do_update_woocommerce'] ) ) { // WPCS: input var ok. check_admin_referer( 'wc_db_update', 'wc_db_update_nonce' ); self::update(); WC_Admin_Notices::add_notice( 'update', true ); } }