25 lines
		
	
	
		
			744 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			744 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * WP-Background Processing
 | 
						|
 *
 | 
						|
 * @package WP-Background-Processing
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * Plugin Name: WP Background Processing
 | 
						|
 * Plugin URI: https://github.com/deliciousbrains/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/deliciousbrains/wp-background-processing
 | 
						|
 * GitHub Branch: master
 | 
						|
 */
 | 
						|
 | 
						|
if ( ! class_exists( 'WP_Async_Request' ) ) {
 | 
						|
	require_once plugin_dir_path( __FILE__ ) . 'classes/wp-async-request.php';
 | 
						|
}
 | 
						|
if ( ! class_exists( 'WP_Background_Process' ) ) {
 | 
						|
	require_once plugin_dir_path( __FILE__ ) . 'classes/wp-background-process.php';
 | 
						|
}
 |