forked from rtCamp/nginx-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwp-cli.php
More file actions
47 lines (37 loc) · 812 Bytes
/
wp-cli.php
File metadata and controls
47 lines (37 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* Contains class for WP-CLI command.
*
* @since 2.0.0
* @package nginx-helper
*/
/**
* Don't load this file directly!
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Nginx_Helper_WP_CLI_Command' ) ) {
/**
* Class Nginx_Helper_WP_CLI_Command
*/
class Nginx_Helper_WP_CLI_Command extends WP_CLI_Command {
/**
* Subcommand to purge all cache from Nginx
*
* Examples:
* wp nginx-helper purge-all
*
* @subcommand purge-all
*
* @param array $args Arguments.
* @param array $assoc_args Arguments in associative array.
*/
public function purge_all( $args, $assoc_args ) {
global $nginx_purger;
$nginx_purger->purge_all();
$message = __( 'Purged Everything!', 'nginx-helper' );
WP_CLI::success( $message );
}
}
}