PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 13.7.1
Jetpack – WP Security, Backup, Speed, & Growth v13.7.1
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 13.7.1, at modules/vaultpress.php

44 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php // phpcs:disable WordPress.WP.CapitalPDangit.MisspelledInComment
2 /**
3 * Module Name: Backups and Scanning
4 * Module Description: Protect your site with daily or real-time backups and automated virus scanning and threat detection.
5 * First Introduced: 0:1.2
6 * Sort Order: 32
7 * Deactivate: false
8 * Free: false
9 * Requires Connection: Yes
10 * Auto Activate: No
11 * Feature: Security, Health
12 * Additional Search Queries: backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security
13 * Plans: personal, business, premium, security, complete
14 */
15 // phpcs:enable WordPress.WP.CapitalPDangit.MisspelledInComment
16
17 add_action( 'jetpack_modules_loaded', 'vaultpress_jetpack_stub' );
18
19 /**
20 * Conditionally enable module configuration.
21 */
22 function vaultpress_jetpack_stub() {
23 if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) {
24 Jetpack::enable_module_configurable( __FILE__ );
25 add_filter( 'jetpack_module_configuration_url_vaultpress', 'vaultpress_jetpack_configure_url' );
26 add_filter( 'jetpack_module_free_text_vaultpress', 'vaultpress_jetpack_module_free_text' );
27 }
28 }
29
30 /**
31 * Text for filter jetpack_module_free_text_vaultpress.
32 */
33 function vaultpress_jetpack_module_free_text() {
34 return __( 'Active', 'jetpack' );
35 }
36
37 /**
38 * URL for filter jetpack_module_configuration_url_vaultpress.
39 */
40 function vaultpress_jetpack_configure_url() {
41 include_once ABSPATH . '/wp-admin/includes/plugin.php';
42 return menu_page_url( 'vaultpress', false );
43 }
44