-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1425f32
commit 1c4e7ea
Showing
19 changed files
with
2,077 additions
and
688 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<?php | ||
/** | ||
* Webfont API's utility helpers. | ||
* | ||
* @package WordPress | ||
* @subpackage WebFonts | ||
* @since 6.1.0 | ||
*/ | ||
|
||
if ( class_exists( 'WP_Webfonts_Utils' ) ) { | ||
return; | ||
} | ||
|
||
/** | ||
* Utility helpers for the Webfonts API. | ||
* | ||
* @since 6.1.0 | ||
*/ | ||
class WP_Webfonts_Utils { | ||
|
||
/** | ||
* Converts the given font family into a handle. | ||
* | ||
* @since 6.1.0 | ||
* | ||
* @param string $font_family Font family to convert into a handle. | ||
* @return string|null The font family handle on success. Else, null. | ||
*/ | ||
public static function convert_font_family_into_handle( $font_family ) { | ||
if ( ! is_string( $font_family ) || empty( $font_family ) ) { | ||
return null; | ||
} | ||
|
||
return sanitize_title( $font_family ); | ||
} | ||
|
||
/** | ||
* Converts the given variation and its font-family into a handle. | ||
* | ||
* @since 6.1.0 | ||
* | ||
* @param string $font_family The font family's handle for this variation. | ||
* @param array $variation An array of variation properties. | ||
* @return string|null The variation handle. | ||
*/ | ||
public static function convert_variation_into_handle( $font_family, array $variation ) { | ||
$handle = ''; | ||
foreach ( array( 'font-weight', 'font-style' ) as $property ) { | ||
if ( ! array_key_exists( $property, $variation ) || ! static::is_defined( $variation[ $property ] ) ) { | ||
continue; | ||
} | ||
|
||
$handle .= ' ' . $variation[ $property ]; | ||
} | ||
|
||
if ( '' === $handle ) { | ||
trigger_error( 'Variant handle could not be determined as font-weight and/or font-style are require' ); | ||
return null; | ||
} | ||
|
||
return sanitize_title( $font_family . $handle ); | ||
} | ||
|
||
/** | ||
* Gets the font family from the variation. | ||
* | ||
* @since 6.1.0 | ||
* | ||
* @param array $variation An array of variation properties to search. | ||
* @return string|null The font family if defined. Else, null. | ||
*/ | ||
public static function get_font_family_from_variation( array $variation ) { | ||
return static::search_for_font_family( $variation ); | ||
} | ||
|
||
/** | ||
* Checks if the given input is defined, i.e. meaning is a non-empty string. | ||
* | ||
* @since 6.1.0 | ||
* | ||
* @param string $input The input to check. | ||
* @return bool True when non-empty string. Else false. | ||
*/ | ||
public static function is_defined( $input ) { | ||
return ( is_string( $input ) && ! empty( $input ) ); | ||
} | ||
|
||
/** | ||
* Searches the variation array to extract the font family. | ||
* | ||
* @since 6.1.0 | ||
* | ||
* @param array $haystack An array of variation properties to search. | ||
* @return string|null The font family when found. Else, null. | ||
*/ | ||
private static function search_for_font_family( array $haystack ) { | ||
if ( array_key_exists( 'fontFamily', $haystack ) ) { | ||
$key = 'fontFamily'; | ||
} elseif ( array_key_exists( 'font-family', $haystack ) ) { | ||
$key = 'font-family'; | ||
} else { | ||
trigger_error( 'Font family not found.' ); | ||
return null; | ||
} | ||
|
||
if ( static::is_defined( $haystack[ $key ] ) ) { | ||
return $haystack[ $key ]; | ||
} | ||
|
||
trigger_error( 'Font family not defined in the variation.' ); | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.