_default_time_limit

_default_time_limit

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

See hook in core

Displaying hooks found in version: wp-stateless.4.1.2

apply_filters('_default_time_limit') is found 1 times:

  • /lib/ns-vendor/classes/deliciousbrains/wp-background-processing/classes/wp-background-process.php line 621
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    *
     * @return bool
     */
    protected function time_exceeded() {
        $finish = $this->start_time + apply_filters( $this->identifier . '_default_time_limit', 20 ); // 20 seconds
        $return = false;
     
        if ( time() >= $finish ) {
            $return = true;
        }