PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.2
Jetpack – WP Security, Backup, Speed, & Growth v16.2
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 14.2.2 All 502 releases
jetpack / modules / subscriptions / subscribe-floating-button / class-jetpack-subscribe-floating-button.php

class-jetpack-subscribe-floating-button.php in Jetpack – WP Security, Backup, Speed, & Growth 16.2, at modules/subscriptions/subscribe-floating-button/class-jetpack-subscribe-floating-button.php

206 lines 6.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Adds support for Jetpack floating Subscribe button feature
4 *
5 * @package automattic/jetpack-subscriptions
6 * @since 14.0
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit( 0 );
11 }
12
13 /**
14 * Jetpack_Subscribe_Floating_Button class.
15 */
16 class Jetpack_Subscribe_Floating_Button {
17 /**
18 * Jetpack_Subscribe_Floating_Button singleton instance.
19 *
20 * @var Jetpack_Subscribe_Floating_Button|null
21 */
22 private static $instance;
23
24 /**
25 * Jetpack_Subscribe_Floating_Button instance init.
26 */
27 public static function init() {
28 if ( self::$instance === null ) {
29 self::$instance = new Jetpack_Subscribe_Floating_Button();
30 }
31
32 return self::$instance;
33 }
34
35 const BLOCK_TEMPLATE_PART_SLUG = 'jetpack-subscribe-floating-button';
36
37 /**
38 * Jetpack_Subscribe_Floating_Button class constructor.
39 */
40 public function __construct() {
41 if ( get_option( 'jetpack_subscribe_floating_button_enabled', false ) ) {
42 add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_assets' ) );
43 add_action( 'wp_footer', array( $this, 'add_subscribe_floating_button_to_frontend' ) );
44 }
45
46 add_filter( 'get_block_template', array( $this, 'get_block_template_filter' ), 10, 3 );
47
48 add_filter(
49 'jetpack_options_whitelist',
50 function ( $options ) {
51 $options[] = 'jetpack_subscribe_floating_button_enabled';
52
53 return $options;
54 }
55 );
56 }
57
58 /**
59 * Returns the block template part ID.
60 *
61 * @return string
62 */
63 public static function get_block_template_part_id() {
64 return get_stylesheet() . '//' . self::BLOCK_TEMPLATE_PART_SLUG;
65 }
66
67 /**
68 * Makes get_block_template return the WP_Block_Template for the floating Subscribe button.
69 *
70 * @param WP_Block_Template $block_template The block template to be returned.
71 * @param string $id Template unique identifier (example: theme_slug//template_slug).
72 * @param string $template_type Template type: `'wp_template'` or '`wp_template_part'`.
73 *
74 * @return WP_Block_Template|null
75 */
76 public function get_block_template_filter( $block_template, $id, $template_type ) {
77 if ( empty( $block_template ) && $template_type === 'wp_template_part' ) {
78 if ( $id === self::get_block_template_part_id() ) {
79 return $this->get_template();
80 }
81 }
82
83 return $block_template;
84 }
85
86 /**
87 * Returns a custom template for the floating Subscribe button.
88 *
89 * @return WP_Block_Template
90 */
91 public function get_template() {
92 $template = new WP_Block_Template();
93 $template->theme = get_stylesheet();
94 $template->slug = self::BLOCK_TEMPLATE_PART_SLUG;
95 $template->id = self::get_block_template_part_id();
96 $template->area = 'uncategorized';
97 $template->content = $this->get_floating_subscribe_button_template_content();
98 $template->source = 'plugin';
99 $template->type = 'wp_template_part';
100 $template->title = __( 'Jetpack Subscribe floating button', 'jetpack' );
101 $template->status = 'publish';
102 $template->has_theme_file = false;
103 $template->is_custom = true;
104 $template->description = __( 'A floating subscribe button that shows up when someone visits your site.', 'jetpack' );
105
106 return $template;
107 }
108
109 /**
110 * Returns the initial content of the floating Subscribe button template.
111 * This can then be edited by the user.
112 *
113 * @return string
114 */
115 public function get_floating_subscribe_button_template_content() {
116 $block_name = esc_attr__( 'Floating subscribe button', 'jetpack' );
117
118 return '<!-- wp:jetpack/subscriptions {"className":"is-style-button","appSource":"subscribe-floating-button","lock":{"move":false,"remove":true},"style":{"spacing":{"margin":{"right":"20px","left":"20px","top":"20px","bottom":"20px"}}},"metadata":{"name":"' . $block_name . '"}} /-->';
119 }
120
121 /**
122 * Enqueues styles.
123 *
124 * @return void
125 */
126 public function enqueue_assets() {
127 if ( $this->should_user_see_floating_button() ) {
128 wp_enqueue_style( 'subscribe-floating-button-css', plugins_url( 'subscribe-floating-button.css', __FILE__ ), array(), JETPACK__VERSION );
129
130 // Disables WP.com action bar as the features collide/overlap
131 add_filter( 'wpcom_disable_logged_out_follow', '__return_true', 10, 1 );
132 }
133 }
134
135 /**
136 * Adds floating Subscribe button HTML wrapper
137 *
138 * @return void
139 */
140 public function add_subscribe_floating_button_to_frontend() {
141 if ( $this->should_user_see_floating_button() ) { ?>
142 <div class="jetpack-subscribe-floating-button">
143 <?php block_template_part( self::BLOCK_TEMPLATE_PART_SLUG ); ?>
144 </div>
145 <?php
146 }
147 }
148
149 /**
150 * Returns true if a site visitor should see
151 * the floating Subscribe button.
152 *
153 * @return bool
154 */
155 public function should_user_see_floating_button() {
156 // Only show when viewing frontend.
157 if ( is_admin() ) {
158 return false;
159 }
160
161 // No content to subscribe to on 404 pages.
162 if ( is_404() ) {
163 return false;
164 }
165
166 // Needed because Elementor editor makes is_admin() return false
167 // See https://coreysalzano.com/wordpress/why-elementor-disobeys-is_admin/
168 // Ignore nonce warning as just checking if is set
169 // phpcs:ignore WordPress.Security.NonceVerification.Recommended
170 if ( isset( $_GET['elementor-preview'] ) ) {
171 return false;
172 }
173
174 // Don't show when previewing blog posts or site's theme
175 // phpcs:ignore WordPress.Security.NonceVerification.Recommended
176 if ( isset( $_GET['preview'] ) || isset( $_GET['theme_preview'] ) || isset( $_GET['customize_preview'] ) || isset( $_GET['hide_banners'] ) ) {
177 return false;
178 }
179
180 // Don't show if one of subscribe query params is set.
181 // They are set when user submits the subscribe form.
182 // The nonce is checked elsewhere before redirect back to this page with query params.
183 // phpcs:ignore WordPress.Security.NonceVerification.Recommended
184 if ( isset( $_GET['subscribe'] ) || isset( $_GET['blogsub'] ) ) {
185 return false;
186 }
187
188 // Don't show if user is subscribed to blog.
189 require_once __DIR__ . '/../views.php';
190 if ( ! class_exists( 'Jetpack_Memberships' ) || Jetpack_Memberships::is_current_user_subscribed() ) {
191 return false;
192 }
193
194 return true;
195 }
196 }
197
198 Jetpack_Subscribe_Floating_Button::init();
199
200 add_action(
201 'rest_api_switched_to_blog',
202 function () {
203 Jetpack_Subscribe_Floating_Button::init();
204 }
205 );
206