mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
a734d8eea1
This brings `trunk`'s version of Twenty Twenty in-sync with GitHub.
For a complete list of changes since [46357], see 7157870...7246fd6
.
Props anlino, ianbelanger, poena, williampatton, nielslange, acosmin, netweb, joyusly, luminuu, itowhid06, cbravobernal, intimez, glauberglauber, ocean90, amolv, briceduclos, aristath, mukesh27, garrett-eclipse, audrasjb, afercia, dianeco, utsav72640, mahesh901122, tobifjellner.
See #48110.
Built from https://develop.svn.wordpress.org/trunk@46445
git-svn-id: http://core.svn.wordpress.org/trunk@46243 1a063a9b-81f0-0310-95a4-ce76da25c4cd
71 lines
1.8 KiB
PHP
71 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Twenty Twenty SVG Icon helper functions
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Twenty
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
if ( ! function_exists( 'twentytwenty_the_theme_svg' ) ) {
|
|
/**
|
|
* Output and Get Theme SVG.
|
|
* Output and get the SVG markup for an icon in the TwentyTwenty_SVG_Icons class.
|
|
*
|
|
* @param string $svg_name The name of the icon.
|
|
* @param string $group The group the icon belongs to.
|
|
* @param string $color Color code.
|
|
*/
|
|
function twentytwenty_the_theme_svg( $svg_name, $group = 'ui', $color = '' ) {
|
|
echo twentytwenty_get_theme_svg( $svg_name, $group, $color ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaped in twentytwenty_get_theme_svg();.
|
|
}
|
|
}
|
|
|
|
if ( ! function_exists( 'twentytwenty_get_theme_svg' ) ) {
|
|
|
|
/**
|
|
* Get information about the SVG icon.
|
|
*
|
|
* @param string $svg_name The name of the icon.
|
|
* @param string $group The group the icon belongs to.
|
|
* @param string $color Color code.
|
|
*/
|
|
function twentytwenty_get_theme_svg( $svg_name, $group = 'ui', $color = '' ) {
|
|
|
|
// Make sure that only our allowed tags and attributes are included.
|
|
$svg = wp_kses(
|
|
TwentyTwenty_SVG_Icons::get_svg( $svg_name, $group, $color ),
|
|
array(
|
|
'svg' => array(
|
|
'class' => true,
|
|
'xmlns' => true,
|
|
'width' => true,
|
|
'height' => true,
|
|
'viewbox' => true,
|
|
'aria-hidden' => true,
|
|
'role' => true,
|
|
'focusable' => true,
|
|
),
|
|
'path' => array(
|
|
'fill' => true,
|
|
'fill-rule' => true,
|
|
'd' => true,
|
|
'transform' => true,
|
|
),
|
|
'polygon' => array(
|
|
'fill' => true,
|
|
'fill-rule' => true,
|
|
'points' => true,
|
|
'transform' => true,
|
|
'focusable' => true,
|
|
),
|
|
)
|
|
);
|
|
|
|
if ( ! $svg ) {
|
|
return false;
|
|
}
|
|
return $svg;
|
|
}
|
|
}
|