X7ROOT File Manager
Current Path:
/home/notabjze/starbudzca.com/wp-content/plugins/jetpack/3rd-party
home
/
notabjze
/
starbudzca.com
/
wp-content
/
plugins
/
jetpack
/
3rd-party
/
ðŸ“
..
📄
3rd-party.php
(3.17 KB)
📄
amp.php
(745 B)
📄
atomic.php
(1023 B)
📄
bbpress.php
(2.03 KB)
📄
beaverbuilder.php
(452 B)
📄
bitly.php
(982 B)
📄
buddypress.php
(503 B)
📄
class-domain-mapping.php
(4.12 KB)
📄
class-jetpack-bbpress-rest-api.php
(4.39 KB)
📄
class-salesforce-lead-form.php
(4.53 KB)
📄
class.jetpack-amp-support.php
(16.68 KB)
📄
creative-mail.php
(3.22 KB)
📄
crowdsignal.php
(815 B)
ðŸ“
debug-bar
📄
debug-bar.php
(733 B)
📄
jetpack-backup.php
(2.72 KB)
📄
jetpack-boost.php
(2.79 KB)
📄
qtranslate-x.php
(634 B)
📄
vaultpress.php
(2.03 KB)
📄
web-stories.php
(974 B)
📄
woocommerce-services.php
(3.43 KB)
📄
woocommerce.php
(3.78 KB)
📄
wpml.php
(1.59 KB)
Editing: vaultpress.php
<?php /** * Handles VaultPress->Rewind transition by deactivating VaultPress when needed. * * @package automattic/jetpack */ use Automattic\Jetpack\Redirect; /** * Notify user that VaultPress has been disabled. Hide VaultPress notice that requested attention. * * @since 5.8 */ function jetpack_vaultpress_rewind_enabled_notice() { // The deactivation is performed here because there may be pages that admin_init runs on, // such as admin_ajax, that could deactivate the plugin without showing this notification. deactivate_plugins( 'vaultpress/vaultpress.php' ); // Remove WP core notice that says that the plugin was activated. unset( $_GET['activate'] ); // phpcs:ignore WordPress.Security.NonceVerification ?> <div class="notice notice-success is-dismissible vp-deactivated"> <p style="margin-bottom: 0.25em;"><strong><?php esc_html_e( 'Jetpack is now handling your backups.', 'jetpack' ); ?></strong></p> <p> <?php esc_html_e( 'VaultPress is no longer needed and has been deactivated.', 'jetpack' ); ?> <?php printf( wp_kses( /* Translators: first variable is the full URL to the new dashboard */ __( 'You can access your backups at <a href="%s" target="_blank" rel="noopener noreferrer">this dashboard</a>.', 'jetpack' ), array( 'a' => array( 'href' => array(), 'target' => array(), 'rel' => array(), ), ) ), esc_url( Redirect::get_url( 'calypso-backups' ) ) ); ?> </p> </div> <style>#vp-notice{display:none;}</style> <?php } /** * If Backup & Scan is enabled, remove its entry in sidebar, deactivate VaultPress, and show a notification. * * @since 5.8 */ function jetpack_vaultpress_rewind_check() { if ( Jetpack::is_connection_ready() && Jetpack::is_plugin_active( 'vaultpress/vaultpress.php' ) && Jetpack::is_rewind_enabled() ) { remove_submenu_page( 'jetpack', 'vaultpress' ); add_action( 'admin_notices', 'jetpack_vaultpress_rewind_enabled_notice' ); } } add_action( 'admin_init', 'jetpack_vaultpress_rewind_check', 11 );
Upload File
Create Folder