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/subscriptions.php +174 -190 12.8.316.2 View file →
@@ -1,27 +1,33 @@
1 1 <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName)
2 2 /**
3 3 * Module Name: Newsletter
4 - * Module Description: Let visitors subscribe to new posts and comments via email
4 + * Module Description: Grow your subscriber list and deliver your content directly to their email inbox.
5 5 * Sort Order: 9
6 6 * Recommendation Order: 8
7 7 * First Introduced: 1.2
8 8 * Requires Connection: Yes
9 9 * Requires User Connection: Yes
10 - * Auto Activate: No
10 + * Auto Activate: Yes
11 11 * Module Tags: Social
12 12 * Feature: Engagement
13 - * Additional Search Queries: subscriptions, subscription, email, follow, followers, subscribers, signup, newsletter
13 + * Additional Search Queries: subscriptions, subscription, email, follow, followers, subscribers, signup, newsletter, creator
14 14 */
15 15
16 16 // phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move classes to appropriately-named class files.
17 17
18 +use Automattic\Jetpack\Admin_UI\Admin_Menu;
18 19 use Automattic\Jetpack\Connection\Manager as Connection_Manager;
19 20 use Automattic\Jetpack\Connection\XMLRPC_Async_Call;
21 +use Automattic\Jetpack\Newsletter\Settings as Newsletter_Settings;
20 22 use Automattic\Jetpack\Redirect;
21 23 use Automattic\Jetpack\Status;
22 24 use Automattic\Jetpack\Status\Host;
23 25
26 +if ( ! defined( 'ABSPATH' ) ) {
27 + exit( 0 );
28 +}
29 +
24 30 add_action( 'jetpack_modules_loaded', 'jetpack_subscriptions_load' );
25 31
26 32 // Loads the User Content Link Redirection feature.
27 33 require_once __DIR__ . '/subscriptions/jetpack-user-content-link-redirection.php';
@@ -43,13 +49,13 @@
43 49 function jetpack_subscriptions_cherry_pick_server_data() {
44 50 $data = array();
45 51
46 52 foreach ( $_SERVER as $key => $value ) {
47 - if ( ! is_string( $value ) || 0 === strpos( $key, 'HTTP_COOKIE' ) ) {
53 + if ( ! is_string( $value ) || str_starts_with( $key, 'HTTP_COOKIE' ) ) {
48 54 continue;
49 55 }
50 56
51 - if ( 0 === strpos( $key, 'HTTP_' ) || in_array( $key, array( 'REMOTE_ADDR', 'REQUEST_URI', 'DOCUMENT_URI' ), true ) ) {
57 + if ( str_starts_with( $key, 'HTTP_' ) || in_array( $key, array( 'REMOTE_ADDR', 'REQUEST_URI', 'DOCUMENT_URI' ), true ) ) {
52 58 $data[ $key ] = $value;
53 59 }
54 60 }
55 61
@@ -57,8 +63,10 @@
57 63 }
58 64
59 65 /**
60 66 * Main class file for the Subscriptions module.
67 + *
68 + * @phan-constructor-used-for-side-effects
61 69 */
62 70 class Jetpack_Subscriptions {
63 71 /**
64 72 * Whether Jetpack has been instantiated or not.
@@ -127,8 +135,10 @@
127 135 add_filter( 'post_updated_messages', array( $this, 'update_published_message' ), 18, 1 );
128 136
129 137 // Set "social_notifications_subscribe" option during the first-time activation.
130 138 add_action( 'jetpack_activate_module_subscriptions', array( $this, 'set_social_notifications_subscribe' ) );
139 + add_action( 'jetpack_activate_module_subscriptions', array( $this, 'set_featured_image_in_email_default' ) );
140 + add_action( 'jetpack_activate_module_subscriptions', array( $this, 'set_newsletter_send_default' ) );
131 141
132 142 // Hide subscription messaging in Publish panel for posts that were published in the past
133 143 add_action( 'init', array( $this, 'register_post_meta' ), 20 );
134 144 add_action( 'transition_post_status', array( $this, 'maybe_set_first_published_status' ), 10, 3 );
@@ -134,8 +144,22 @@
134 144 add_action( 'transition_post_status', array( $this, 'maybe_set_first_published_status' ), 10, 3 );
135 145
136 146 // Add Subscribers menu to Jetpack navigation.
137 147 add_action( 'jetpack_admin_menu', array( $this, 'add_subscribers_menu' ) );
148 +
149 + // Customize the configuration URL to lead to the Subscriptions settings.
150 + add_filter(
151 + 'jetpack_module_configuration_url_subscriptions',
152 + function () {
153 + return Jetpack::admin_url( array( 'page' => 'jetpack#/newsletter' ) );
154 + }
155 + );
156 +
157 + // Track categories created through the category editor page
158 + add_action( 'wp_ajax_add-tag', array( $this, 'track_newsletter_category_creation' ), 1 );
159 +
160 + $newsletter_settings = new Newsletter_Settings();
161 + $newsletter_settings::init();
138 162 }
139 163
140 164 /**
141 165 * Jetpack_Subscriptions::xmlrpc_methods()
@@ -357,32 +381,14 @@
357 381 'discussion',
358 382 'stc_enabled'
359 383 );
360 384
361 - /** Enable Subscribe Modal */
362 -
363 - /** This filter is documented in plugins/jetpack/modules/subscriptions/subscribe-module/class-jetpack-subscribe-module.php */
364 - if ( apply_filters( 'jetpack_subscriptions_modal_enabled', false ) ) {
365 - add_settings_field(
366 - 'jetpack_subscriptions_comment_subscribe',
367 - __( 'Enable Subscribe Modal', 'jetpack' ),
368 - array( $this, 'subscribe_modal_setting' ),
369 - 'discussion',
370 - 'jetpack_subscriptions'
371 - );
372 -
373 - register_setting(
374 - 'discussion',
375 - 'sm_enabled'
376 - );
377 - }
378 -
379 - /** Email me whenever: Someone follows my blog */
385 + /** Email me whenever: Someone subscribes to my blog */
380 386 /* @since 8.1 */
381 387
382 388 add_settings_section(
383 389 'notifications_section',
384 - __( 'Someone follows my blog', 'jetpack' ),
390 + __( 'Someone subscribes to my blog', 'jetpack' ),
385 391 array( $this, 'social_notifications_subscribe_section' ),
386 392 'discussion'
387 393 );
388 394
@@ -398,47 +404,8 @@
398 404 'discussion',
399 405 'social_notifications_subscribe',
400 406 array( $this, 'social_notifications_subscribe_validate' )
401 407 );
402 -
403 - /** Subscription Messaging Options */
404 -
405 - register_setting(
406 - 'reading',
407 - 'subscription_options',
408 - array( $this, 'validate_settings' )
409 - );
410 -
411 - add_settings_section(
412 - 'email_settings',
413 - __( 'Follower Settings', 'jetpack' ),
414 - array( $this, 'reading_section' ),
415 - 'reading'
416 - );
417 -
418 - add_settings_field(
419 - 'invitation',
420 - __( 'Blog follow email text', 'jetpack' ),
421 - array( $this, 'setting_invitation' ),
422 - 'reading',
423 - 'email_settings'
424 - );
425 -
426 - add_settings_field(
427 - 'comment-follow',
428 - __( 'Comment follow email text', 'jetpack' ),
429 - array( $this, 'setting_comment_follow' ),
430 - 'reading',
431 - 'email_settings'
432 - );
433 -
434 - add_settings_field(
435 - 'welcome',
436 - __( 'Welcome email text', 'jetpack' ),
437 - array( $this, 'setting_welcome' ),
438 - 'reading',
439 - 'email_settings'
440 - );
441 408 }
442 409
443 410 /**
444 411 * Discussions setting section blurb.
@@ -497,25 +464,9 @@
497 464 <?php
498 465 }
499 466
500 467 /**
501 - * Subscribe Modal Toggle.
502 - */
503 - public function subscribe_modal_setting() {
504 -
505 - $sm_enabled = get_option( 'sm_enabled', 1 );
506 - ?>
507 -
508 - <p class="description">
509 - <input type="checkbox" name="sm_enabled" id="jetpack-subscribe-modal" value="1" <?php checked( $sm_enabled, 1 ); ?> />
510 - <?php esc_html_e( 'Show a popup subscribe modal to readers.', 'jetpack' ); ?>
511 - </p>
512 -
513 - <?php
514 - }
515 -
516 - /**
517 - * Someone follows my blog section
468 + * Someone subscribes to my blog section
518 469 *
519 470 * @since 8.1
520 471 */
521 472 public function social_notifications_subscribe_section() {
@@ -539,9 +490,9 @@
539 490 <?php
540 491 }
541 492
542 493 /**
543 - * Someone follows my blog Toggle
494 + * Someone subscribes to my blog Toggle
544 495 *
545 496 * @since 8.1
546 497 */
547 498 public function social_notifications_subscribe_field() {
@@ -551,9 +502,9 @@
551 502 <label>
552 503 <input type="checkbox" name="social_notifications_subscribe" id="social_notifications_subscribe" value="1" <?php checked( $checked ); ?> />
553 504 <?php
554 505 /* translators: this is a label for a setting that starts with "Email me whenever" */
555 - esc_html_e( 'Someone follows my blog', 'jetpack' );
506 + esc_html_e( 'Someone subscribes to my blog', 'jetpack' );
556 507 ?>
557 508 </label>
558 509 <?php
559 510 }
@@ -558,9 +509,9 @@
558 509 <?php
559 510 }
560 511
561 512 /**
562 - * Validate "Someone follows my blog" option
513 + * Validate "Someone subscribes to my blog" option
563 514 *
564 515 * @since 8.1
565 516 *
566 517 * @param String $input the input string to be validated.
@@ -576,92 +527,8 @@
576 527 return 'on';
577 528 }
578 529
579 530 /**
580 - * Validate settings for the Subscriptions module.
581 - *
582 - * @param array $settings Settings to be validated.
583 - */
584 - public function validate_settings( $settings ) {
585 - global $allowedposttags;
586 -
587 - $default = $this->get_default_settings();
588 -
589 - // Blog Follow.
590 - $settings['invitation'] = trim( wp_kses( $settings['invitation'], $allowedposttags ) );
591 - if ( empty( $settings['invitation'] ) ) {
592 - $settings['invitation'] = $default['invitation'];
593 - }
594 -
595 - // Comments Follow (single post).
596 - $settings['comment_follow'] = trim( wp_kses( $settings['comment_follow'], $allowedposttags ) );
597 - if ( empty( $settings['comment_follow'] ) ) {
598 - $settings['comment_follow'] = $default['comment_follow'];
599 - }
600 -
601 - return $settings;
602 - }
603 -
604 - /**
605 - * HTML output helper for Reading section.
606 - */
607 - public function reading_section() {
608 - echo '<p id="follower-settings">';
609 - esc_html_e( 'These settings change emails sent from your blog to followers.', 'jetpack' );
610 - echo '</p>';
611 - }
612 -
613 - /**
614 - * HTML output helper for Invitation section.
615 - */
616 - public function setting_invitation() {
617 - $settings = $this->get_settings();
618 - echo '<textarea name="subscription_options[invitation]" class="large-text" cols="50" rows="5">' . esc_textarea( $settings['invitation'] ) . '</textarea>';
619 - echo '<p><span class="description">' . esc_html__( 'Introduction text sent when someone follows your blog. (Site and confirmation details will be automatically added for you.)', 'jetpack' ) . '</span></p>';
620 - }
621 -
622 - /**
623 - * HTML output helper for Comment Follow section.
624 - */
625 - public function setting_comment_follow() {
626 - $settings = $this->get_settings();
627 - echo '<textarea name="subscription_options[comment_follow]" class="large-text" cols="50" rows="5">' . esc_textarea( $settings['comment_follow'] ) . '</textarea>';
628 - echo '<p><span class="description">' . esc_html__( 'Introduction text sent when someone follows a post on your blog. (Site and confirmation details will be automatically added for you.)', 'jetpack' ) . '</span></p>';
629 - }
630 -
631 - /**
632 - * HTML output helper for Welcome section.
633 - */
634 - public function setting_welcome() {
635 - $settings = $this->get_settings();
636 - echo '<textarea name="subscription_options[welcome]" class="large-text" cols="50" rows="5">' . esc_textarea( $settings['welcome'] ) . '</textarea>';
637 - echo '<p><span class="description">' . esc_html__( 'Welcome text sent when someone follows your blog.', 'jetpack' ) . '</span></p>';
638 - }
639 -
640 - /**
641 - * Get default settings for the Subscriptions module.
642 - */
643 - public function get_default_settings() {
644 - $site_url = get_home_url();
645 - $display_url = preg_replace( '(^https?://)', '', untrailingslashit( $site_url ) );
646 -
647 - return array(
648 - /* translators: Both %1$s and %2$s is site address */
649 - 'invitation' => sprintf( __( "Howdy,\nYou recently subscribed to <a href='%1\$s'>%2\$s</a> and we need to verify the email you provided. Once you confirm below, you'll be able to receive and read new posts.\n\nIf you believe this is an error, ignore this message and nothing more will happen.", 'jetpack' ), $site_url, $display_url ),
650 - 'comment_follow' => __( "Howdy.\n\nYou recently followed one of my posts. This means you will receive an email when new comments are posted.\n\nTo activate, click confirm below. If you believe this is an error, ignore this message and we'll never bother you again.", 'jetpack' ),
651 - /* translators: %1$s is the site address */
652 - 'welcome' => sprintf( __( 'Cool, you are now subscribed to %1$s and will receive an email notification when a new post is published.', 'jetpack' ), $display_url ),
653 - );
654 - }
655 -
656 - /**
657 - * Reeturn merged `subscription_options` option with module default settings.
658 - */
659 - public function get_settings() {
660 - return wp_parse_args( (array) get_option( 'subscription_options' ), $this->get_default_settings() );
661 - }
662 -
663 - /**
664 531 * Jetpack_Subscriptions::subscribe()
665 532 *
666 533 * Send a synchronous XML-RPC subscribe to blog posts or subscribe to post comments request.
667 534 *
@@ -700,8 +567,9 @@
700 567
701 568 if ( $async ) {
702 569 XMLRPC_Async_Call::add_call( 'jetpack.subscribeToSite', 0, $email, $post_id, serialize( $extra_data ) ); //phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize
703 570 } else {
571 + // @phan-suppress-next-line PhanPossiblyUndeclaredVariable -- $xml is set when $async is false
704 572 $xml->addCall( 'jetpack.subscribeToSite', $email, $post_id, serialize( $extra_data ) ); //phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize
705 573 }
706 574 }
707 575
@@ -709,19 +577,24 @@
709 577 return;
710 578 }
711 579
712 580 // Call.
581 + // @phan-suppress-next-line PhanPossiblyUndeclaredVariable -- $xml is set when $async is false, otherwise we return early
713 582 $xml->query();
714 583
584 + // @phan-suppress-next-line PhanPossiblyUndeclaredVariable -- $xml is set when $async is false, otherwise we return early
715 585 if ( $xml->isError() ) {
586 + // @phan-suppress-next-line PhanPossiblyUndeclaredVariable -- $xml is set when $async is false, otherwise we return early
716 587 return $xml->get_jetpack_error();
717 588 }
718 589
590 + // @phan-suppress-next-line PhanPossiblyUndeclaredVariable -- $xml is set when $async is false
719 591 $responses = $xml->getResponse();
720 592
721 593 $r = array();
722 594 foreach ( (array) $responses as $response ) {
723 595 if ( isset( $response['faultCode'] ) || isset( $response['faultString'] ) ) {
596 + // @phan-suppress-next-line PhanPossiblyUndeclaredVariable -- $xml is set when $async is false
724 597 $r[] = $xml->get_jetpack_error( $response['faultCode'], $response['faultString'] );
725 598 continue;
726 599 }
727 600
@@ -761,9 +634,9 @@
761 634 * When a user submits their email via the blog subscription widget, check the details and call the subsribe() method.
762 635 */
763 636 public function widget_submit() {
764 637 // Check the nonce.
765 - if ( ! wp_verify_nonce( 'blogsub_subscribe_' . \Jetpack_Options::get_option( 'id' ) ) ) {
638 + if ( ! wp_verify_nonce( isset( $_REQUEST['_wpnonce'] ) ? sanitize_key( $_REQUEST['_wpnonce'] ) : '', 'blogsub_subscribe_' . \Jetpack_Options::get_option( 'id' ) ) ) {
766 639 return false;
767 640 }
768 641
769 642 if ( empty( $_REQUEST['email'] ) || ! is_string( $_REQUEST['email'] ) ) {
@@ -839,9 +712,9 @@
839 712 */
840 713 do_action( 'jetpack_subscriptions_form_submission', $result );
841 714
842 715 wp_safe_redirect( "$redirect#$redirect_fragment" );
843 - exit;
716 + exit( 0 );
844 717 }
845 718
846 719 /**
847 720 * Jetpack_Subscriptions::comment_subscribe_init()
@@ -852,8 +725,13 @@
852 725 */
853 726 public function comment_subscribe_init( $submit_button ) {
854 727 global $post;
855 728
729 + // Subscriptions are only available for posts so far.
730 + if ( ! $post || 'post' !== $post->post_type ) {
731 + return $submit_button;
732 + }
733 +
856 734 $comments_checked = '';
857 735 $blog_checked = '';
858 736
859 737 // Check for a comment / blog submission and set a cookie to retain the setting and check the boxes.
@@ -932,8 +810,19 @@
932 810 * @param int|string $comment_id Comment thread being subscribed to.
933 811 * @param string $approved Comment status.
934 812 */
935 813 public function comment_subscribe_submit( $comment_id, $approved ) {
814 + /**
815 + * Filters whether to skip comment subscription processing.
816 + *
817 + * @since 15.5
818 + *
819 + * @param bool $skip Whether to skip comment subscription. Default false.
820 + */
821 + if ( apply_filters( 'jetpack_subscription_comment_subscribe_skip', false ) ) {
822 + return;
823 + }
824 +
936 825 if ( 'spam' === $approved ) {
937 826 return;
938 827 }
939 828
@@ -996,9 +885,9 @@
996 885 public function set_cookies( $subscribe_to_post = false, $post_id = null, $subscribe_to_blog = false ) {
997 886 $post_id = (int) $post_id;
998 887
999 888 /** This filter is already documented in core/wp-includes/comment-functions.php */
1000 - $cookie_lifetime = apply_filters( 'comment_cookie_lifetime', 30000000 );
889 + $cookie_lifetime = apply_filters( 'comment_cookie_lifetime', YEAR_IN_SECONDS );
1001 890
1002 891 /**
1003 892 * Filter the Jetpack Comment cookie path.
1004 893 *
@@ -1021,15 +910,15 @@
1021 910 */
1022 911 $cookie_domain = apply_filters( 'jetpack_comment_cookie_domain', COOKIE_DOMAIN );
1023 912
1024 913 if ( $subscribe_to_post && $post_id >= 0 ) {
1025 - setcookie( 'jetpack_comments_subscribe_' . self::$hash . '_' . $post_id, 1, time() + $cookie_lifetime, $cookie_path, $cookie_domain, is_ssl(), true );
914 + setcookie( 'jetpack_comments_subscribe_' . self::$hash . '_' . $post_id, '1', time() + $cookie_lifetime, $cookie_path, $cookie_domain, is_ssl(), true );
1026 915 } else {
1027 916 setcookie( 'jetpack_comments_subscribe_' . self::$hash . '_' . $post_id, '', time() - 3600, $cookie_path, $cookie_domain, is_ssl(), true );
1028 917 }
1029 918
1030 919 if ( $subscribe_to_blog ) {
1031 - setcookie( 'jetpack_blog_subscribe_' . self::$hash, 1, time() + $cookie_lifetime, $cookie_path, $cookie_domain, is_ssl(), true );
920 + setcookie( 'jetpack_blog_subscribe_' . self::$hash, '1', time() + $cookie_lifetime, $cookie_path, $cookie_domain, is_ssl(), true );
1032 921 } else {
1033 922 setcookie( 'jetpack_blog_subscribe_' . self::$hash, '', time() - 3600, $cookie_path, $cookie_domain, is_ssl(), true );
1034 923 }
1035 924 }
@@ -1047,8 +936,26 @@
1047 936 }
1048 937 }
1049 938
1050 939 /**
940 + * Set the featured image in email option to `1` when the Subscriptions module is activated in the first time.
941 + *
942 + * @return void
943 + */
944 + public function set_featured_image_in_email_default() {
945 + add_option( 'wpcom_featured_image_in_email', 1 );
946 + }
947 +
948 + /**
949 + * Set the email post to subscribers default option to `1` when the Subscriptions module is activated for the first time.
950 + *
951 + * @return void
952 + */
953 + public function set_newsletter_send_default() {
954 + add_option( 'wpcom_newsletter_send_default', 1 );
955 + }
956 +
957 + /**
1051 958 * Save a flag when a post was ever published.
1052 959 *
1053 960 * It saves the post meta when the post was published and becomes a draft.
1054 961 * Then this meta is used to hide subscription messaging in Publish panel.
@@ -1057,8 +964,13 @@
1057 964 * @param string $old_status The "old" post status of the transition when saved.
1058 965 * @param object $post obj The post object.
1059 966 */
1060 967 public function maybe_set_first_published_status( $new_status, $old_status, $post ) {
968 + // Subscriptions are only available for posts so far.
969 + if ( ! $post instanceof \WP_Post || 'post' !== $post->post_type ) {
970 + return;
971 + }
972 +
1061 973 $was_post_ever_published = get_post_meta( $post->ID, '_jetpack_post_was_ever_published', true );
1062 974 if ( ! $was_post_ever_published && 'publish' === $old_status && 'draft' === $new_status ) {
1063 975 update_post_meta( $post->ID, '_jetpack_post_was_ever_published', true );
1064 976 }
@@ -1064,14 +976,24 @@
1064 976 }
1065 977 }
1066 978
1067 979 /**
1068 - * Checks if the current user can publish posts.
980 + * Checks if the current user can edit posts.
1069 981 *
1070 982 * @return bool
1071 983 */
1072 984 public function first_published_status_meta_auth_callback() {
1073 - if ( current_user_can( 'publish_posts' ) ) {
985 + /**
986 + * Filter the capability required to edit the "was ever published" post meta.
987 + *
988 + * @module subscriptions
989 + *
990 + * @since 13.4
991 + *
992 + * @param string $capability User capability needed to edit the "was ever published" meta. Default to edit_posts.
993 + */
994 + $capability = apply_filters( 'jetpack_subscriptions_post_was_ever_published_capability', 'edit_posts' );
995 + if ( current_user_can( $capability ) ) {
1074 996 return true;
1075 997 }
1076 998 return false;
1077 999 }
@@ -1080,16 +1002,17 @@
1080 1002 * Registers the 'post_was_ever_published' post meta for use in the REST API.
1081 1003 */
1082 1004 public function register_post_meta() {
1083 1005 $jetpack_post_was_ever_published = array(
1084 - 'type' => 'boolean',
1085 - 'description' => __( 'Whether the post was ever published.', 'jetpack' ),
1086 - 'single' => true,
1087 - 'default' => false,
1088 - 'show_in_rest' => array(
1006 + 'type' => 'boolean',
1007 + 'description' => __( 'Whether the post was ever published.', 'jetpack' ),
1008 + 'single' => true,
1009 + 'default' => false,
1010 + 'show_in_rest' => array(
1089 1011 'name' => 'jetpack_post_was_ever_published',
1090 1012 ),
1091 - 'auth_callback' => array( $this, 'first_published_status_meta_auth_callback' ),
1013 + 'auth_callback' => array( $this, 'first_published_status_meta_auth_callback' ),
1014 + 'object_subtype' => 'post', // Subscriptions are only for the post post type so far, so we can limit this meta to posts only.
1092 1015 );
1093 1016
1094 1017 register_meta( 'post', '_jetpack_post_was_ever_published', $jetpack_post_was_ever_published );
1095 1018 }
@@ -1098,17 +1021,28 @@
1098 1021 * Create a Subscribers menu displayed on self-hosted sites.
1099 1022 *
1100 1023 * - It is not displayed on WordPress.com sites.
1101 1024 * - It directs you to Calypso to the existing Subscribers page.
1025 + * - It is retired once the Newsletter modernization filter is on, since the
1026 + * unified Newsletter page then owns the Subscribers tab.
1102 1027 *
1103 1028 * @return void
1104 1029 */
1105 1030 public function add_subscribers_menu() {
1106 1031 /*
1107 - * Do not display any menu on WoA and WordPress.com Simple sites.
1032 + * Referenced as a string literal (mirrors Newsletter\Settings::MODERNIZATION_FILTER)
1033 + * to keep this bootstrap path safe if the packaged Newsletter Settings class does
1034 + * not expose the constant yet.
1035 + */
1036 + if ( apply_filters( 'rsm_jetpack_ui_modernization_newsletter', true ) ) {
1037 + return;
1038 + }
1039 +
1040 + /*
1041 + * Do not display any menu on WoA and WordPress.com Simple sites (unless Classic wp-admin is enabled).
1108 1042 * They already get a menu item under Users via nav-unification.
1109 1043 */
1110 - if ( ( new Host() )->is_wpcom_platform() ) {
1044 + if ( ( new Host() )->is_wpcom_platform() && get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) {
1111 1045 return;
1112 1046 }
1113 1047
1114 1048 $status = new Status();
@@ -1123,22 +1057,66 @@
1123 1057 ) {
1124 1058 return;
1125 1059 }
1126 1060
1061 + /**
1062 + * Enables the new in development subscribers in wp-admin dashboard.
1063 + *
1064 + * @since 9.5.0
1065 + *
1066 + * @param bool If the new dashboard is enabled. Defaults on for every site; hosts
1067 + * can opt out with this filter.
1068 + */
1069 + if ( apply_filters( 'jetpack_wp_admin_subscriber_management_enabled', true ) ) {
1070 + return;
1071 + }
1072 +
1073 + $blog_id = Connection_Manager::get_site_id( true );
1074 +
1127 1075 $link = Redirect::get_url(
1128 - 'jetpack-menu-calypso-subscribers',
1129 - array( 'site' => $status->get_site_suffix() )
1076 + 'jetpack-menu-jetpack-manage-subscribers',
1077 + array( 'site' => $blog_id ? $blog_id : $status->get_site_suffix() )
1130 1078 );
1131 1079
1132 - add_submenu_page(
1133 - 'jetpack',
1134 - esc_attr__( 'Subscribers', 'jetpack' ),
1135 - __( 'Subscribers', 'jetpack' ) . ' <span class="dashicons dashicons-external"></span>',
1080 + Admin_Menu::add_menu(
1081 + __( 'Subscribers', 'jetpack' ),
1082 + __( 'Subscribers', 'jetpack' ) . ' <span aria-hidden="true">↗</span>',
1136 1083 'manage_options',
1137 1084 esc_url( $link ),
1138 - null
1085 + null,
1086 + 100
1139 1087 );
1140 1088 }
1089 +
1090 + /**
1091 + * Record tracks event if categories is created when user enters
1092 + * the edit category page through the newsletter settings page.
1093 + *
1094 + * @return void
1095 + */
1096 + public function track_newsletter_category_creation() {
1097 +
1098 + // phpcs:disable WordPress.Security.NonceVerification.Missing
1099 + if ( empty( $_POST['_wp_http_referer'] ) ) {
1100 + return;
1101 + }
1102 +
1103 + if ( strpos( sanitize_url( wp_unslash( $_POST['_wp_http_referer'] ) ), 'referer=newsletter-categories' ) > -1 ) {
1104 +
1105 + $parent = filter_var( empty( $_POST['parent'] ) ? 0 : wp_unslash( $_POST['parent'] ), FILTER_SANITIZE_NUMBER_INT );
1106 +
1107 + $is_child_category = $parent > 0;
1108 +
1109 + $tracking = new Automattic\Jetpack\Tracking();
1110 + $tracking->tracks_record_event(
1111 + wp_get_current_user(),
1112 + 'jetpack_newsletter_add_category',
1113 + array(
1114 + 'is_child_category' => $is_child_category,
1115 + )
1116 + );
1117 + }
1118 + }
1141 1119 }
1142 1120
1143 1121 Jetpack_Subscriptions::init();
1144 1122
@@ -1143,4 +1121,10 @@
1143 1121 Jetpack_Subscriptions::init();
1144 1122
1145 1123 require __DIR__ . '/subscriptions/views.php';
1146 1124 require __DIR__ . '/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php';
1125 +require __DIR__ . '/subscriptions/subscribe-overlay/class-jetpack-subscribe-overlay.php';
1126 +require __DIR__ . '/subscriptions/subscribe-floating-button/class-jetpack-subscribe-floating-button.php';
1127 +require __DIR__ . '/subscriptions/newsletter-widget/class-jetpack-newsletter-dashboard-widget.php';
1128 +
1129 +require_once __DIR__ . '/subscriptions/abilities/class-newsletter-abilities.php';
1130 +\Automattic\Jetpack\Plugin\Abilities\Newsletter_Abilities::init();