woocommerce_product_importer_default_time_limit

woocommerce_product_importer_default_time_limit

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_product_importer_default_time_limit') is found 1 times:

  • /includes/import/abstract-wc-product-importer.php line 762
    	 *
    	 * @return bool
    	 */
    	protected function time_exceeded() {
    		$finish = $this->start_time + apply_filters( 'woocommerce_product_importer_default_time_limit', 20 ); // 20 seconds
    		$return = false;
    		if ( time() >= $finish ) {
    			$return = true;
    		}
    		return apply_filters( 'woocommerce_product_importer_time_exceeded', $return );
    	}