You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
744 B
PHTML

<?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';
}