26 lines
787 B
PHP
26 lines
787 B
PHP
<?php
|
|
|
|
namespace WSAL_Vendor;
|
|
|
|
/**
|
|
* 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('WSAL_Vendor\\WP_Async_Request')) {
|
|
require_once plugin_dir_path(__FILE__) . 'classes/wp-async-request.php';
|
|
}
|
|
if (!\class_exists('WSAL_Vendor\\WP_Background_Process')) {
|
|
require_once plugin_dir_path(__FILE__) . 'classes/wp-background-process.php';
|
|
}
|