term = $term; $this->taxonomy = $taxonomy; $this->taxonomy_tab_content = new WPSEO_Taxonomy_Fields_Presenter( $this->term ); add_action( 'admin_footer', array( $this, 'template_generic_tab' ) ); add_action( 'admin_footer', array( $this, 'template_keyword_tab' ) ); } /** * Shows the Yoast SEO metabox for the term. */ public function display() { $content_sections = $this->get_content_sections(); $product_title = 'Yoast SEO'; if ( file_exists( WPSEO_PATH . 'premium/' ) ) { $product_title .= ' Premium'; } printf( '

%1$s

', $product_title ); // Add Help Center to the taxonomy metabox see #4701. echo '
'; $tab_video_url = 'https://yoa.st/metabox-taxonomy-screencast'; include WPSEO_PATH . 'admin/views/partial-settings-tab-video.php'; echo '
'; echo '
    '; foreach ( $content_sections as $content_section ) { $content_section->display_link(); } echo '
'; foreach ( $content_sections as $content_section ) { $content_section->display_content(); } echo '
'; } /** * Returns the relevant metabox sections for the current view. * * @return WPSEO_Metabox_Section[] */ private function get_content_sections() { $content_sections = array( $this->get_content_meta_section(), $this->get_social_meta_section(), $this->get_settings_meta_section(), ); return $content_sections; } /** * Returns the metabox section for the content analysis. * * @return WPSEO_Metabox_Section */ private function get_content_meta_section() { $taxonomy_content_fields = new WPSEO_Taxonomy_Content_Fields( $this->term ); $content = $this->taxonomy_tab_content->html( $taxonomy_content_fields->get() ); $tab = new WPSEO_Metabox_Form_Tab( 'content', $content, __( '', 'wordpress-seo' ), array( 'link_class' => 'yoast-seo__remove-tab', ) ); return new WPSEO_Metabox_Tab_Section( 'content', '' . $this->traffic_light_svg() . '', array( $tab ), array( 'link_title' => __( 'Content optimization', 'wordpress-seo' ), ) ); } /** * Returns the metabox section for the settings. * * @return WPSEO_Metabox_Section */ private function get_settings_meta_section() { $taxonomy_settings_fields = new WPSEO_Taxonomy_Settings_Fields( $this->term ); $content = $this->taxonomy_tab_content->html( $taxonomy_settings_fields->get() ); $tab = new WPSEO_Metabox_Form_Tab( 'settings', $content, __( 'Settings', 'wordpress-seo' ) ); return new WPSEO_Metabox_Tab_Section( 'settings', '', array( $tab ), array( 'link_title' => __( 'Settings', 'wordpress-seo' ), ) ); } /** * Returns the metabox section for the social settings. * * @return WPSEO_Metabox_Section */ private function get_social_meta_section() { $options = WPSEO_Options::get_option( 'wpseo_social' ); $taxonomy_social_fields = new WPSEO_Taxonomy_Social_Fields( $this->term ); $tabs = array(); if ( $options['opengraph'] === true ) { $facebook_meta_fields = $taxonomy_social_fields->get_by_network( 'opengraph' ); $tabs[] = new WPSEO_Metabox_Form_Tab( 'facebook', $this->taxonomy_tab_content->html( $facebook_meta_fields ), '', array( 'link_title' => __( 'Facebook / Opengraph metadata', 'wordpress-seo' ), ) ); } if ( $options['twitter'] === true ) { $twitter_meta_fields = $taxonomy_social_fields->get_by_network( 'twitter' ); $tabs[] = new WPSEO_Metabox_Form_Tab( 'twitter', $this->taxonomy_tab_content->html( $twitter_meta_fields ), '', array( 'link_title' => __( 'Twitter metadata', 'wordpress-seo' ), ) ); } return new WPSEO_Metabox_Tab_Section( 'social', '', $tabs, array( 'link_title' => __( 'Social', 'wordpress-seo' ), ) ); } /** * Test whether we are on a public taxonomy - no metabox actions needed if we are not * Unfortunately we have to hook most everything in before the point where all taxonomies are registered and * we know which taxonomy is being requested, so we need to use this check in nearly every hooked in function. * * @since 1.5.0 */ private function tax_is_public() { // Don't make static as taxonomies may still be added during the run. $taxonomy = get_taxonomy( $this->taxonomy ); return $taxonomy->public; } /** * Return the SVG for the traffic light in the metabox. */ public function traffic_light_svg() { return << SVG; } /** * Generic tab. */ public function template_generic_tab() { // This template belongs to the post scraper so don't echo it if it isn't enqueued. if ( ! wp_script_is( WPSEO_Admin_Asset_Manager::PREFIX . 'term-scraper' ) ) { return; } echo ''; } /** * Keyword tab for enabling analysis of multiple keywords. */ public function template_keyword_tab() { // This template belongs to the term scraper so don't echo it if it isn't enqueued. if ( ! wp_script_is( WPSEO_Admin_Asset_Manager::PREFIX . 'term-scraper' ) ) { return; } echo ''; } }