PluginProbe
Solace Extra / trunk
Solace Extra vtrunk
1.7.1 1.7.0 1.6.2 1.6.1 1.6.0 1.5.3 trunk 1.0.8 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.7 1.1.8 1.1.9 1.2.1 1.2.2 1.3.0 1.3.1 1.3.2 1.3.3 1.5.0 1.5.1 All 26 releases
solace-extra / admin / wp-background-processing.php

wp-background-processing.php in Solace Extra trunk, at admin/wp-background-processing.php

24 lines 682 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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