PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 3.1.5
Jetpack – WP Security, Backup, Speed, & Growth v3.1.5
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / vaultpress.php

vaultpress.php in Jetpack – WP Security, Backup, Speed, & Growth 3.1.5, at modules/vaultpress.php

31 lines 907 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Module Name: VaultPress
4 * Module Description: Protect your site with automatic backups and security scans. (Subscription required.)
5 * First Introduced: 0:1.2
6 * Sort Order: 32
7 * Deactivate: false
8 * Free: false
9 * Requires Connection: Yes
10 * Auto Activate: Yes
11 */
12
13 add_action( 'jetpack_modules_loaded', 'vaultpress_jetpack_stub' );
14
15 function vaultpress_jetpack_stub() {
16 if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) {
17 Jetpack::enable_module_configurable( __FILE__ );
18 Jetpack::module_configuration_load( __FILE__, 'vaultpress_jetpack_configure' );
19 add_filter( 'jetpack_module_free_text_vaultpress', 'vaultpress_jetpack_module_free_text' );
20 }
21 }
22
23 function vaultpress_jetpack_module_free_text() {
24 return __( 'Active', 'jetpack' );
25 }
26
27 function vaultpress_jetpack_configure() {
28 wp_safe_redirect( menu_page_url( 'vaultpress', false ) );
29 exit;
30 }
31