Style value parser that constructs a CSS definition array comprising a single CSS property and value.
Description
If the provided value is an array containing a url
property, the function will return a CSS definition array with a single property and value, with url
escaped and injected into a CSS url()
function, e.g., array( ‘background-image’ => "url( ‘…’ )" ).
Parameters
$style_value
arrayrequired- A single raw style value from $block_styles array.
$style_definition
arrayrequired- A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
Source
protected static function get_url_or_value_css_declaration( $style_value, $style_definition ) {
if ( empty( $style_value ) ) {
return array();
}
$css_declarations = array();
if ( isset( $style_definition['property_keys']['default'] ) ) {
$value = null;
if ( ! empty( $style_value['url'] ) ) {
$value = "url('" . $style_value['url'] . "')";
} elseif ( is_string( $style_value ) ) {
$value = $style_value;
}
if ( null !== $value ) {
$css_declarations[ $style_definition['property_keys']['default'] ] = $value;
}
}
return $css_declarations;
}
Changelog
Version | Description |
---|---|
6.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.