bd_after_scheduler

bd_after_scheduler

Hook Type: action

See hook in core

Displaying hooks found in version: bulk-delete.6.11

do_action('bd_after_scheduler') is found 5 times:

  • /include/Core/Base/BaseScheduler.php line 122

    Warning: Undefined array key 124 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 125 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 126 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 127 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    		 *
    		 * @param string $label         Cron Label.
    		 * @param int    $items_deleted Number of items that were deleted.
    		 */
    		do_action( 'bd_after_scheduler', $this->module->get_cron_label(), $items_deleted );
    	}
    }
    
    
    
    
    
  • /include/Core/Metas/Modules/DeleteCommentMetaModule.php line 281

    Warning: Undefined array key 283 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 284 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 285 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 286 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    	 */
    	public function do_delete_comment_meta( $delete_options ) {
    		do_action( 'bd_before_scheduler', $this->messages['cron_label'] );
    		$count = $this->delete( $delete_options );
    		do_action( 'bd_after_scheduler', $this->messages['cron_label'], $count );
    	}
    }
    
    
    
    
    
  • /include/Deprecated/class-bd-scheduler-addon.php line 155
    	 */
    	public function do_delete( $delete_options ) {
    		do_action( 'bd_before_scheduler', $this->addon_name );
    		$count = $this->get_module()->delete( $delete_options );
    		do_action( 'bd_after_scheduler', $this->addon_name, $count );
    	}
    
    	/**
    	 * Get the cron hook.
    	 *
    	 * @access protected
    
  • /include/addons/base/class-bd-scheduler-addon.php line 154
    	 */
    	public function do_delete( $delete_options ) {
    		do_action( 'bd_before_scheduler', $this->addon_name );
    		$count = $this->get_module()->delete( $delete_options );
    		do_action( 'bd_after_scheduler', $this->addon_name, $count );
    	}
    
    	/**
    	 * Get the cron hook.
    	 *
    	 * @access protected
    
  • /include/misc/class-bulk-delete-jetpack-contact-form-messages.php line 485

    Warning: Undefined array key 487 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 488 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 489 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 490 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    	 */
    	public static function do_delete_jetpack_messages_cron( $delete_options ) {
    		do_action( 'bd_before_scheduler', self::CRON_NAME );
    		$count = self::delete_jetpack_messages( $delete_options );
    		do_action( 'bd_after_scheduler', self::CRON_NAME, $count );
    	}
    }