$this->identifier . _cron_interval, $this->cron_interval

$this->identifier . _cron_interval, $this->cron_interval

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

apply_filters('$this->identifier . _cron_interval, $this->cron_interval') is found 2 times:

  • /includes/abstracts/class-wc-background-process.php line 165
    	public function schedule_cron_healthcheck( $schedules ) {
    		$interval = apply_filters( $this->identifier . '_cron_interval', 5 );
    
    		if ( property_exists( $this, 'cron_interval' ) ) {
    			$interval = apply_filters( $this->identifier . '_cron_interval', $this->cron_interval );
    		}
    
    		// Adds every 5 minutes to the existing schedules.
    		$schedules[ $this->identifier . '_cron_interval' ] = array(
    			'interval' => MINUTE_IN_SECONDS * $interval,
    			/* translators: %d: interval */
    
  • /includes/libraries/wp-background-process.php line 417
    	public function schedule_cron_healthcheck( $schedules ) {
    		$interval = apply_filters( $this->identifier . '_cron_interval', 5 );
    
    		if ( property_exists( $this, 'cron_interval' ) ) {
    			$interval = apply_filters( $this->identifier . '_cron_interval', $this->cron_interval );
    		}
    
    		// Adds every 5 minutes to the existing schedules.
    		$schedules[ $this->identifier . '_cron_interval' ] = array(
    			'interval' => MINUTE_IN_SECONDS * $interval,
    			'display'  => sprintf( __( 'Every %d minutes', 'woocommerce' ), $interval ),