PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.2
Jetpack – WP Security, Backup, Speed, & Growth v16.2
16.3-a.1 16.2 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 All 503 releases
← All changes | modules/module-info.php +36 -20 13.8.316.2 View file →
@@ -12,8 +12,12 @@
12 12 */
13 13
14 14 use Automattic\Jetpack\Redirect;
15 15
16 +if ( ! defined( 'ABSPATH' ) ) {
17 + exit( 0 );
18 +}
19 +
16 20 /**
17 21 * VaultPress (stub) support link.
18 22 */
19 23 function vaultpress_jetpack_load_more_link() {
@@ -342,28 +346,8 @@
342 346 }
343 347 add_action( 'jetpack_module_more_info_carousel', 'jetpack_carousel_more_info' );
344 348
345 349 /**
346 - * Masterbar support link.
347 - */
348 -function jetpack_masterbar_more_link() {
349 - echo esc_url( Redirect::get_url( 'jetpack-support-masterbar' ) );
350 -}
351 -add_action( 'jetpack_learn_more_button_masterbar', 'jetpack_masterbar_more_link' );
352 -
353 -/**
354 - * Masterbar description.
355 - */
356 -function jetpack_masterbar_more_info() {
357 - esc_html_e(
358 - 'Quickly access your Stats, Notifications, Posts and more on WordPress.com.
359 - The Toolbar is displayed for any user on the site that is connected to WordPress.com.',
360 - 'jetpack'
361 - );
362 -}
363 -add_action( 'jetpack_module_more_info_masterbar', 'jetpack_masterbar_more_info' );
364 -
365 -/**
366 350 * Infinite Scroll support link.
367 351 */
368 352 function jetpack_infinite_scroll_more_button() {
369 353 echo esc_url( Redirect::get_url( 'jetpack-support-infinite-scroll' ) );
@@ -848,8 +832,24 @@
848 832 }
849 833 add_action( 'jetpack_module_more_info_google-fonts', 'jetpack_more_info_google_fonts' );
850 834
851 835 /**
836 + * Account Protection support link.
837 + */
838 +function jetpack_account_protection_more_link() {
839 + echo esc_url( Redirect::get_url( 'jetpack-account-protection' ) );
840 +}
841 +add_action( 'jetpack_learn_more_button_account-protection', 'jetpack_account_protection_more_link' );
842 +
843 +/**
844 + * Account Protection description.
845 + */
846 +function jetpack_more_info_account_protection() {
847 + esc_html_e( 'Enabling this setting enhances account security by detecting compromised passwords and enforcing additional verification when needed.', 'jetpack' );
848 +}
849 +add_action( 'jetpack_module_more_info_account-protection', 'jetpack_more_info_account_protection' );
850 +
851 +/**
852 852 * WAF support link.
853 853 */
854 854 function jetpack_waf_more_link() {
855 855 echo esc_url( Redirect::get_url( 'jetpack-support-waf' ) );
@@ -878,4 +878,20 @@
878 878 function jetpack_more_info_blaze() {
879 879 esc_html_e( 'Grow your audience by promoting your content across Tumblr and WordPress.com.', 'jetpack' );
880 880 }
881 881 add_action( 'jetpack_module_more_info_blaze', 'jetpack_more_info_blaze' );
882 +
883 +/**
884 + * WordPress.com Reader support link.
885 + */
886 +function jetpack_wpcom_reader_more_link() {
887 + echo esc_url( Redirect::get_url( 'jetpack-support-reader' ) );
888 +}
889 +add_action( 'jetpack_learn_more_button_wpcom-reader', 'jetpack_wpcom_reader_more_link' );
890 +
891 +/**
892 + * WordPress.com Reader description.
893 + */
894 +function jetpack_more_info_wpcom_reader() {
895 + esc_html_e( 'Quickly access the WordPress.com Reader from your site’s admin bar.', 'jetpack' );
896 +}
897 +add_action( 'jetpack_module_more_info_wpcom-reader', 'jetpack_more_info_wpcom_reader' );