notices = array( 'my-admin' => array( 'title' => __( "Retired feature: Jetpack's XYZ Feature", 'jetpack' ), 'message' => __( 'This feature is being retired and will be removed effective November, 2024. Please use the Classic Theme Helper plugin instead.', 'jetpack' ), 'link' => array( 'label' => __( 'Learn more', 'jetpack' ), 'url' => 'jetpack-support-xyz', ), 'show' => false, // 'show' is not required, but setting it to false will ensure that the notice will not be displayed. 'hide_in_woa' => true, // 'hide_in_woa' is not required, but setting it to true will ensure that the notice will not be displayed in the WoA admin (none will display in Simple regardless). ), ); $this->set_notices(); if ( $this->has_notices() ) { // We only want the notice to appear on the main WP Admin dashboard, which hooking into load-index.php will allow. add_action( 'load-index.php', function () { add_action( 'admin_notices', array( $this, 'render_admin_notices' ) ); } ); add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_scripts' ) ); add_filter( 'my_jetpack_red_bubble_notification_slugs', array( $this, 'add_my_jetpack_red_bubbles' ) ); } } /** * Create/get the singleton instance. * * @return static */ public static function instance() { if ( null === static::$instance ) { static::$instance = new static(); } return static::$instance; } /** * Enqueue the scripts. * * @return void */ public function enqueue_admin_scripts() { if ( ! $this->has_notices() ) { return; } if ( ! wp_script_is( 'jetpack-deprecate', 'registered' ) ) { wp_register_script( 'jetpack-deprecate', Assets::get_file_url_for_environment( '_inc/build/deprecate.min.js', '_inc/deprecate.js' ), array(), JETPACK__VERSION, true ); } wp_enqueue_script( 'jetpack-deprecate' ); wp_add_inline_script( 'jetpack-deprecate', 'window.noticeInfo = ' . wp_json_encode( $this->notices ) . ';', 'before' ); } /** * Ensure the notices variable is properly formatted and includes the required suffix and show value. * * @return void */ private function set_notices() { $notices = array(); $required_id_suffix = '-deprecate-feature'; $host = new Host(); foreach ( $this->notices as $id => $notice ) { if ( $host->is_woa_site() && isset( $notice['hide_in_woa'] ) && true === $notice['hide_in_woa'] ) { continue; } if ( isset( $notice['show'] ) && false === $notice['show'] ) { continue; } if ( empty( $notice['title'] ) || empty( $notice['message'] ) || empty( $notice['link']['url'] ) ) { continue; } if ( empty( $notice['link']['label'] ) ) { $notice['link']['label'] = __( 'Learn more', 'jetpack' ); } if ( strpos( $id, $required_id_suffix ) === false ) { $id .= $required_id_suffix; } $notices[ $id ] = $notice; } $this->notices = $notices; } /** * Render deprecation notices for relevant features. * * @return void */ public function render_admin_notices() { foreach ( $this->notices as $id => $notice ) { if ( $this->show_feature_notice( $id ) ) { $support_url = Redirect::get_url( $notice['link']['url'] ); $this->render_notice( $id, '
' . esc_html( $notice['title'] ) . '
' . '' . esc_html( $notice['message'] ) . '
' . ' ' . esc_html( $notice['link']['label'] ) . '' . '' . '