PHP 8.2.31
Preview: google-fonts.php Size: 3.72 KB
/home/nshryvcy/himaltourism.com/wp-content/plugins/jetpack/modules/google-fonts.php

<?php
/**
 * Module Name: Google Fonts (Beta)
 * Module Description: A selection of Google fonts for block enabled themes. This feature is still being developed.
 * Sort Order: 1
 * Recommendation Order: 2
 * First Introduced: 10.8.0
 * Requires Connection: No
 * Auto Activate: No
 * Module Tags: Fonts, Recommended
 * Feature: Writing
 * Additional Search Queries: fonts, webfonts, typography
 *
 * @package automattic/jetpack
 */

/**
 * Curated list of Google Fonts
 * See https://wp.me/p9Jlb4-22P
 */
const JETPACK_GOOGLE_FONTS_LIST = array(
	'Albert Sans',
	'Alegreya',
	'Arvo',
	'Bodoni Moda',
	'Cabin',
	'Chivo',
	'Commissioner',
	'Cormorant',
	'Courier Prime',
	'Crimson Pro',
	'DM Mono',
	'DM Sans',
	'Domine',
	'EB Garamond',
	'Epilogue',
	'Figtree',
	'Fira Sans',
	'Fraunces',
	'IBM Plex Mono',
	'IBM Plex Sans',
	'Inter',
	'Josefin Sans',
	'Jost',
	'Libre Baskerville',
	'Libre Franklin',
	'Literata',
	'Lora',
	'Merriweather',
	'Montserrat',
	'Newsreader',
	'Nunito',
	'Open Sans',
	'Overpass',
	'Petrona',
	'Piazzolla',
	'Playfair Display',
	'Plus Jakarta Sans',
	'Poppins',
	'Raleway',
	'Roboto Slab',
	'Roboto',
	'Rubik',
	'Sora',
	'Source Sans Pro',
	'Source Serif Pro',
	'Space Mono',
	'Texturina',
	'Work Sans',
);

/**
 * Register a curated selection of Google Fonts.
 *
 * @return void
 */
function jetpack_add_google_fonts_provider() {
	if ( ! function_exists( 'wp_register_webfont_provider' ) || ! function_exists( 'wp_register_webfonts' ) ) {
		return;
	}

	wp_register_webfont_provider( 'jetpack-google-fonts', '\Automattic\Jetpack\Fonts\Google_Fonts_Provider' );

	/**
	 * Curated list of Google Fonts.
	 *
	 * @module google-fonts
	 *
	 * @since 10.8
	 *
	 * @param array $fonts_to_register Array of Google Font names to register.
	 */
	$fonts_to_register = apply_filters( 'jetpack_google_fonts_list', JETPACK_GOOGLE_FONTS_LIST );

	foreach ( $fonts_to_register as $font_family ) {
		$fonts = array();

		$font_italic = array(
			'font-family'  => $font_family,
			'font-weight'  => '100 900',
			'font-style'   => 'normal',
			'font-display' => 'fallback',
			'provider'     => 'jetpack-google-fonts',
		);

		$font_normal = array(
			'font-family'  => $font_family,
			'font-weight'  => '100 900',
			'font-style'   => 'italic',
			'font-display' => 'fallback',
			'provider'     => 'jetpack-google-fonts',
		);

		// New WP Fonts API format since Gutenberg 14.9 requires keyed array
		// See https://github.com/Automattic/jetpack/issues/28063
		// Remove conditional once WP 6.2 is the minimum version (must confirm this made it into 6.2)
		if ( class_exists( 'WP_Fonts' ) ) {
			$fonts = array(
				$font_family => array( $font_normal, $font_italic ),
			);
		} elseif ( class_exists( 'WP_Webfonts' ) ) {
			$fonts = array( $font_normal, $font_italic );
		}

		// New fonts register function since Gutenberg 15.0 or 15.1
		// See https://github.com/Automattic/jetpack/issues/28063#issuecomment-1387090575
		// Remove conditional once WP 6.2 is the minimum version (must confirm this made it into 6.2)
		if ( function_exists( 'wp_register_fonts' ) ) {
			wp_register_fonts( $fonts );
		} else {
			wp_register_webfonts( $fonts );
		}
	}
}
add_action( 'after_setup_theme', 'jetpack_add_google_fonts_provider' );

add_filter( 'wp_resource_hints', '\Automattic\Jetpack\Fonts\Utils::font_source_resource_hint', 10, 2 );
add_filter( 'pre_render_block', '\Automattic\Jetpack\Fonts\Introspectors\Blocks::enqueue_block_fonts', 10, 2 );
// The priority for the next hook is is set to 22 because it needs to run after Gutenberg's
// re-registration (at priority 22) of the core blocks it de-registers (at the default priority 10),
// otherwise Gutenberg caches an incorrect state.
add_action( 'init', '\Automattic\Jetpack\Fonts\Introspectors\Global_Styles::enqueue_global_styles_fonts', 22 );

Directory Contents

Dirs: 42 × Files: 53

Name Size Perms Modified Actions
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
carousel DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
comments DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
gravatar DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
likes DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
markdown DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
masterbar DIR
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
photon DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
protect DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
scan DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
seo-tools DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
site-icon DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
sitemaps DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
sso DIR
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
stats DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
widgets DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
wordads DIR
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
wpcom-tos DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
644 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
564 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
7.98 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
993 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
7.47 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
12.27 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.53 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1.37 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
2.39 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
2.44 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
501 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
3.72 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
11.81 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
8.14 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
484 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
4.61 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.12 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
21.35 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1007 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1.56 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
2.93 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
46.44 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
28.17 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
3.51 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
7.94 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
12.09 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
781 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
19.84 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
596 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
533 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
28.83 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
4.55 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
2.12 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.17 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1.52 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.61 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
6.06 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
4.37 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.28 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
38.12 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
51.87 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
31.93 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
2.52 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.05 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1.70 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
830 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1007 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
297 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
475 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
2.85 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
631 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
577 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.91 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).