wp-background-processing.php 754 Bytes
<?php

namespace NF_FU_VENDOR;

/**
 * WP-Background Processing
 *
 * @package WP-Background-Processing
 */
/*
Plugin Name: WP Background Processing
Plugin URI: https://github.com/A5hleyRich/wp-background-processing
Description: Asynchronous requests and background processing in WordPress.
Author: Delicious Brains Inc.
Version: 1.0
Author URI: https://deliciousbrains.com/
GitHub Plugin URI: https://github.com/A5hleyRich/wp-background-processing
GitHub Branch: master
*/
if (!\class_exists('NF_FU_VENDOR\\WP_Async_Request')) {
    require_once plugin_dir_path(__FILE__) . 'classes/wp-async-request.php';
}
if (!\class_exists('NF_FU_VENDOR\\WP_Background_Process')) {
    require_once plugin_dir_path(__FILE__) . 'classes/wp-background-process.php';
}