芝麻web文件管理V1.00
编辑当前文件:/home/ezdajrnh/public_html/wp-content/plugins/jetpack/src/class-deprecate.php
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'] ) . '
' . '
' . '
' . '
' . '
' . '
' ); } } } /** * Add the deprecation notices to My Jetpack. * * @param array $slugs Already added bubbles. * * @return array */ public function add_my_jetpack_red_bubbles( $slugs ) { foreach ( $this->notices as $id => $notice ) { if ( $this->show_feature_notice( $id ) ) { $slugs[ $id ] = array( 'data' => array( 'text' => $notice['message'], 'title' => $notice['title'], 'link' => array( 'label' => esc_html( $notice['link']['label'] ), 'url' => Redirect::get_url( $notice['link']['url'] ), ), 'id' => $id, ), ); } } return $slugs; } /** * Render the notice. * * @param string $id The notice ID. * @param string $text The notice text. * * @return void */ private function render_notice( $id, $text ) { printf( '
%2$s
', esc_html( $id ), $text // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Output already escaped in render_admin_notices ); } /** * Check if there are any notices to be displayed, so we wouldn't load unnecessary JS and run excessive hooks. * * @return bool */ private function has_notices() { foreach ( $this->notices as $id => $notice ) { if ( $this->show_feature_notice( $id ) ) { return true; } } return false; } /** * Check if the feature notice should be shown, based on the existence of the cookie. * * @param string $id The notice ID. * * @return bool */ private function show_feature_notice( $id ) { return empty( $_COOKIE['jetpack_deprecate_dismissed'][ $id ] ); } }