HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/autodescription/inc/classes/sitemap/optimized/xsl.class.php
<?php
/**
 * @package The_SEO_Framework\Classes\Sitemap\Optimized\XSL
 * @subpackage The_SEO_Framework\Sitemap
 */

namespace The_SEO_Framework\Sitemap\Optimized;

\defined( 'THE_SEO_FRAMEWORK_PRESENT' ) or die;

use \The_SEO_Framework\Helper\Template;

/**
 * The SEO Framework plugin
 * Copyright (C) 2021 - 2024 Sybre Waaijer, CyberWire B.V. (https://cyberwire.nl/)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as published
 * by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

/**
 * Interprets the Sitemap Stylesheet of the optimized Sitemap.
 *
 * @since 4.2.0
 * @since 5.0.0 1. Moved to `\The_SEO_Framework\Interpreters`.
 *              2. Renamed from `Sitemap_XSL`.
 * @access private
 */
final class XSL {

	/**
	 * Loads all hooks for the stylesheet.
	 *
	 * @since 5.0.0
	 */
	public static function register_hooks() {

		// Adds site icon tags to the sitemap stylesheet.
		\add_action( 'the_seo_framework_xsl_head', 'wp_site_icon', 99 );

		\add_action( 'the_seo_framework_xsl_head', [ static::class, '_print_xsl_global_variables' ], 0 );
		\add_action( 'the_seo_framework_xsl_head', [ static::class, '_print_xsl_title' ] );
		\add_action( 'the_seo_framework_xsl_head', [ static::class, '_print_xsl_styles' ] );

		\add_action( 'the_seo_framework_xsl_description', [ static::class, '_print_xsl_description' ] );

		\add_action( 'the_seo_framework_xsl_content', [ static::class, '_print_xsl_content' ] );

		\add_action( 'the_seo_framework_xsl_footer', [ static::class, '_print_xsl_footer' ] );
		\add_action( 'site_icon_meta_tags', [ static::class, '_convert_site_icon_meta_tags' ], PHP_INT_MAX );
	}

	/**
	 * Prints global XSL variables.
	 *
	 * @hook the_seo_framework_xsl_head 0
	 * @since 3.1.0
	 * @since 4.2.0 1. $tableMinWidth no longer adds 'px'.
	 *              2. Moved to class.
	 * @access private
	 */
	public static function _print_xsl_global_variables() {
		Template::output_view( 'sitemap/xsl/vars' );
	}

	/**
	 * Prints XSL title.
	 *
	 * @hook the_seo_framework_xsl_head 10
	 * @since 3.1.0
	 * @since 4.0.0 Now uses a consistent titling scheme.
	 * @since 4.2.0 Moved to class
	 * @access private
	 */
	public static function _print_xsl_title() {
		Template::output_view( 'sitemap/xsl/title' );
	}

	/**
	 * Prints XSL styles.
	 *
	 * @hook the_seo_framework_xsl_head 10
	 * @since 3.1.0
	 * @since 4.2.0 1. Centered sitemap.
	 *              2. Moved to class.
	 * @access private
	 */
	public static function _print_xsl_styles() {
		Template::output_view( 'sitemap/xsl/styles' );
	}

	/**
	 * Prints XSL description.
	 *
	 * @hook the_seo_framework_xsl_description 10
	 * @since 3.1.0
	 * @since 4.2.0 Moved to class.
	 * @access private
	 */
	public static function _print_xsl_description() {
		Template::output_view( 'sitemap/xsl/description' );
	}

	/**
	 * Prints XSL content.
	 *
	 * @hook the_seo_framework_xsl_content 10
	 * @since 3.1.0
	 * @since 4.2.0 Moved to class.
	 * @access private
	 */
	public static function _print_xsl_content() {
		Template::output_view( 'sitemap/xsl/table' );
	}

	/**
	 * Prints XSL footer.
	 *
	 * @hook the_seo_framework_xsl_footer 10
	 * @since 3.1.0
	 * @since 4.2.0 Moved to class.
	 * @access private
	 */
	public static function _print_xsl_footer() {
		/**
		 * @since 2.8.0
		 * @param bool $indicator
		 */
		\apply_filters( 'the_seo_framework_indicator_sitemap', true )
			and Template::output_view( 'sitemap/xsl/footer' );
	}

	/**
	 * Converts meta tags that aren't XHTML to XHTML, loosely.
	 * Doesn't fix attribute minimization. TODO?..
	 *
	 * @hook site_icon_meta_tags PHP_INT_MAX
	 * @since 3.1.4
	 * @since 4.2.0 Moved to class.
	 * @access private
	 *
	 * @param array $tags Site Icon meta elements.
	 * @return array The converted meta tags.
	 */
	public static function _convert_site_icon_meta_tags( $tags ) {

		foreach ( $tags as &$tag ) {
			$tag = \wp_kses(
				\force_balance_tags( $tag ),
				[
					'link' => [
						'charset'  => [],
						'rel'      => [],
						'sizes'    => [],
						'href'     => [],
						'hreflang' => [],
						'media'    => [],
						'rev'      => [],
						'target'   => [],
						'type'     => [],
					],
					'meta' => [
						'content'    => [],
						'property'   => [],
						'http-equiv' => [],
						'name'       => [],
						'scheme'     => [],
					],
				],
				[],
			);
		}

		return $tags;
	}
}