PluginProbe ʕ •ᴥ•ʔ
WP 2FA – Two-factor authentication for WordPress / 2.4.2
WP 2FA – Two-factor authentication for WordPress v2.4.2
4.0.0 1.7.1 2.0.0 2.0.1 2.1.0 2.2.0 2.2.1 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.8.0 2.9.0 2.9.1 2.9.2 2.9.3 3.0.0 3.0.1 3.1.0 3.1.1 3.1.1.2 trunk 1.2.0 1.3.0 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.6.0 1.6.1 1.6.2 1.7.0
wp-2fa / vendor / deliciousbrains / wp-background-processing / wp-background-processing.php
wp-2fa / vendor / deliciousbrains / wp-background-processing Last commit date
classes 3 years ago wp-background-processing.php 3 years ago
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