Q| V q| VI| V| V@+$| V` >n| VuP p=| V<Q| V0 P q| VP PA| Vm| VPQ| V 0q| V PA| Vm| V`| V @=| VD HRy| VPAx | VP`u| Vp pA!| V| V@ `q| Vr@ 0pRy| V0PA| V `A| V | Vp =| V`q PRy| VPPA| V `A | V`m| Vp` | V*7| V9| Vp =| V PAQ| V  qx | VpPu| V `A| V pA| V| V`u | V| V:m| V| V{| V+| V`=| VPC | Vm| V| VP= | V| V| V+| V=| VRy| VPAx | V``u| VpA!| V| Vp=| Vm` |p0Ry| V0PAx | Vp`u!| V| V`| VP| V=| VH|pRy| VpPAx | VP`u| VpA!| V| VpP0=| V0P@8Ry| VPA| V`A | Vm| Vp!| V`P=| VpXRy| VPA | VI| VW| V,| Vp p=| V@xRy| VPAx | V``u!| V&| V`=| V@Ry| VPA!| V(| V@q| Vq5|@0Ry| V0PA| V`A| V*$| V>B`@BR@R@H(x,@,@)8N?,@,@)@pB @ @B@B`@ @x@@x@`7@@`C@C@ D@PD0@0CH@Dacon' ], 1 ); add_filter( 'wpseo_enable_tracking', '__return_true', 1 ); // Add Sub Menu page and add redirect page to admin page array. // This should be possible in one method in the future, see #535. add_filter( 'wpseo_submenu_pages', [ $this, 'add_submenu_pages' ], 9 ); // Add input fields to page meta post types. add_action( 'Yoast\WP\SEO\admin_post_types_beforearchive_internal', [ $this, 'admin_page_meta_post_types_checkboxes', ], 10, 2 ); // Settings. add_action( 'admin_init', [ $this, 'register_settings' ] ); // Add Premium imports. $this->integrations[] = new WPSEO_Premium_Import_Manager(); } // Add page analysis fields to variable array key patterns. add_filter( 'wpseo_option_titles_variable_array_key_patterns', [ $this, 'add_variable_array_key_pattern' ] ); // Only activate post and term watcher if permalink structure is enabled. if ( get_option( 'permalink_structure' ) ) { add_action( 'admin_init', [ $this, 'init_watchers' ] ); add_action( 'rest_api_init', [ $this, 'init_watchers' ] ); } if ( ! is_admin() ) { // Add 404 redirect link to WordPress toolbar. add_action( 'admin_bar_menu', [ $this, 'admin_bar_menu' ], 96 ); add_filter( 'redirect_canonical', [ $this, 'redirect_canonical_fix' ], 1, 2 ); } add_action( 'wpseo_premium_indicator_classes', [ $this, 'change_premium_indicator' ] ); add_action( 'wpseo_premium_indicator_text', [ $this, 'change_premium_indicator_text' ] ); foreach ( $this->integrations as $integration ) { $integration->register_hooks(); } } /** * Checks if the page is a premium page. * * @param string $page The page to check. * * @return bool */ private function is_yoast_seo_premium_page( $page ) { $premium_pages = [ 'wpseo_redirects' ]; return in_array( $page, $premium_pages, true ); } /** * Sets the autoloader for the redirects and instantiates the redirect page object. * * @return void */ private function redirect_setup() { $this->redirects = new WPSEO_Redirect_Page(); // Adds integration that filters redirected entries from the sitemap. $this->integrations['redirect-sitemap-filter'] = new WPSEO_Redirect_Sitemap_Filter( home_url() ); } /** * Initialize the watchers for the posts and the terms * * @return void */ public function init_watchers() { // The Post Watcher. $post_watcher = new WPSEO_Post_Watcher(); $post_watcher->register_hooks(); // The Term Watcher. $term_watcher = new WPSEO_Term_Watcher(); $term_watcher->register_hooks(); } /** * Hooks into the `redirect_canonical` filter to catch ongoing redirects and move them to the correct spot * * @param string $redirect_url The target url where the requested URL will be redirected to. * @param string $requested_url The current requested URL. * * @return string */ public function redirect_canonical_fix( $redirect_url, $requested_url ) { $redirects = new WPSEO_Redirect_Option( false ); $path = wp_parse_url( $requested_url, PHP_URL_PATH ); $redirect = $redirects->get( $path ); if ( $redirect === false ) { return $redirect_url; } $redirect_url = $redirect->get_origin(); if ( substr( $redirect_url, 0, 1 ) === '/' ) { $redirect_url = home_url( $redirect_url ); } wp_redirect( $redirect_url, $redirect->get_type(), 'Yoast SEO Premium' ); exit; } /** * Add 'Create Redirect' option to admin bar menu on 404 pages * * @return void */ public function admin_bar_menu() { // Prevent function from running if the page is not a 404 page or the user has not the right capabilities to create redirects. if ( ! is_404() || ! WPSEO_Capability_Utils::current_user_can( 'wpseo_manage_options' ) ) { return; } global $wp, $wp_admin_bar; $parsed_url = wp_parse_url( home_url( $wp->request ) ); if ( ! is_array( $parsed_url ) || empty( $parsed_url['path'] ) ) { return; } $old_url = WPSEO_Redirect_Util::strip_base_url_path_from_url( home_url(), $parsed_url['path'] ); if ( isset( $parsed_url['query'] ) && $parsed_url['query'] !== '' ) { $old_url .= '?' . $parsed_url['query']; } $old_url = rawurlencode( $old_url ); $node = [ 'id' => 'wpseo-premium-create-redirect', 'title' => __( 'Create Redirect', 'wordpress-seo-premium' ), 'href' => wp_nonce_url( admin_url( 'admin.php?page=wpseo_redirects&old_url=' . $old_url ), 'wpseo_redirects-old-url', 'wpseo_premium_redirects_nonce' ), ]; $wp_admin_bar->add_menu( $node ); } /** * Add page analysis to array with variable array key patterns * * @param array $patterns Array with patterns for page analysis. * * @return array */ public function add_variable_array_key_pattern( $patterns ) { if ( in_array( 'page-analyse-extra-', $patterns, true ) === false ) { $patterns[] = 'page-analyse-extra-'; } return $patterns; } /** * This hook will add an input-field for specifying custom fields for page analysis. * * The values will be comma-separated and will target the belonging field in the post_meta. Page analysis will * use the content of it by sticking it to the post_content. * * @param Yoast_Form $yform The Yoast_Form object. * @param string $name The post type name. * * @return void */ public function admin_page_meta_post_types_checkboxes( $yform, $name ) { $custom_fields_help_link = new Help_Link_Presenter( WPSEO_Shortlinker::get( 'https://yoa.st/4cr' ), __( 'Learn more about including custom fields in the page analysis', 'wordpress-seo-premium' ) ); echo '
'; $yform->textinput_extra_content( 'page-analyse-extra-' . $name, esc_html__( 'Custom fields to include in page analysis', 'wordpress-seo-premium' ), [ 'extra_content' => $custom_fields_help_link, ] ); echo '
'; } /** * Function adds the premium pages to the Yoast SEO menu * * @param array $submenu_pages Array with the configuration for the submenu pages. * * @return array */ public function add_submenu_pages( $submenu_pages ) { $submenu_pages[] = [ 'wpseo_dashboard', '', __( 'Redirects', 'wordpress-seo-premium' ) . ' ', 'wpseo_manage_redirects', 'wpseo_redirects', [ $this->redirects, 'display' ], ]; return $submenu_pages; } /** * Change premium indicator to green when premium is enabled * * @param string[] $classes The current classes for the indicator. * * @return string[] The new classes for the indicator. */ public function change_premium_indicator( $classes ) { $class_no = array_search( 'wpseo-premium-indicator--no', $classes, true ); if ( $class_no !== false ) { unset( $classes[ $class_no ] ); $classes[] = 'wpseo-premium-indicator--yes'; } return $classes; } /** * Replaces the screen reader text for the premium indicator. * * @param string $text The original text. * * @return string The new text. */ public function change_premium_indicator_text( $text ) { return __( 'Enabled', 'wordpress-seo-premium' ); } /** * Register the premium settings * * @return void */ public function register_settings() { register_setting( 'yoast_wpseo_redirect_options', 'wpseo_redirect' ); } /** * Output admin css in admin head * * @return void */ public function admin_css() { echo ""; } /** * Load textdomain * * @return void */ private function load_textdomain() { load_plugin_textdomain( 'wordpress-seo-premium', false, dirname( WPSEO_PREMIUM_BASENAME ) . '/languages/' ); } /** * Initializes the HelpScout support modal for WPSEO settings pages. * * @param array $helpscout_settings The helpscout settings. * * @return array The HelpScout beacon settings array. */ public function filter_helpscout_beacon( $helpscout_settings ) { $beacon_id = '1ae02e91-5865-4f13-b220-7daed946ba25'; $helpscout_settings['products'][] = WPSEO_Addon_Manager::PREMIUM_SLUG; // Set the beacon to the premium beacon for all pages. foreach ( $helpscout_settings['pages_ids'] as $page => $beacon ) { $helpscout_settings['pages_ids'][ $page ] = $beacon_id; } // Add the redirects page. $helpscout_settings['pages_ids']['wpseo_redirects'] = $beacon_id; return $helpscout_settings; } }