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.9.8.1

apply_filters('woocommerce_product_importer_default_time_limit') is found 1 times:

  • /includes/import/abstract-wc-product-importer.php line 764
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    *
     * @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 );
    }