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