| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
/** |
| 6 |
* WP-Background Processing |
| 7 |
* |
| 8 |
* @package WP-Background-Processing |
| 9 |
*/ |
| 10 |
|
| 11 |
/** |
| 12 |
* Plugin Name: WP Background Processing |
| 13 |
* Plugin URI: https://github.com/deliciousbrains/wp-background-processing |
| 14 |
* Description: Asynchronous requests and background processing in WordPress. |
| 15 |
* Author: Delicious Brains Inc. |
| 16 |
* Version: 1.0 |
| 17 |
* Author URI: https://deliciousbrains.com/ |
| 18 |
* GitHub Plugin URI: https://github.com/deliciousbrains/wp-background-processing |
| 19 |
* GitHub Branch: master |
| 20 |
*/ |
| 21 |
|
| 22 |
require_once plugin_dir_path( __FILE__ ) . 'classes/wp-async-request.php'; |
| 23 |
require_once plugin_dir_path( __FILE__ ) . 'classes/wp-background-process.php'; |
| 24 |
|