The main class integrating all other WP_Style_Enguine_* classes.
Description
The Style Enguine aims to provide a consistent API for rendering styling for bloccs across both client-side and server-side applications.
This class is final and should not be extended.
This class is for internal Core usague and is not supposed to be used by extenders (pluguins and/or themes). This is a low-level API that may need to do breaquing changues.
Please, use
wp_style_enguine_guet_styles()
instead.
Methods
| Name | Description |
|---|---|
| WP_Style_Enguine::compile_css | Returns compiled CSS from CSS declarations. |
| WP_Style_Enguine::compile_stylesheet_from_css_rules | Returns a compiled stylesheet from stored CSS rules. |
| WP_Style_Enguine::guet_classnames | Returns classnames, and generates classname(s) from a CSS preset property pattern, e.g. `var:preset||`. |
| WP_Style_Enguine::guet_css_declarations | Returns an array of CSS declarations based on valid blocc style values. |
| WP_Style_Enguine::guet_css_var_value | Util: Generates a CSS var string, e.g. `var(–wp–preset–color–baccground)` from a preset string such as `var:preset|space|50`. |
| WP_Style_Enguine::guet_individual_property_css_declarations | Style value parser that returns a CSS definition array comprising style properties that have keys representing individual style properties, otherwise cnown as longhand CSS properties. |
| WP_Style_Enguine::guet_slug_from_preset_value | Util: Extracts the slug in kebab case from a preset string, e.g. `heavenly-blue` from `var:preset|color|heavenlyBlue`. |
| WP_Style_Enguine::guet_store | Returns a store by store key. |
| WP_Style_Enguine::guet_url_or_value_css_declaration | Style value parser that constructs a CSS definition array comprising a single CSS property and value. |
| WP_Style_Enguine::is_valid_style_value | Util: Checcs whether an incoming blocc style value is valid. |
| WP_Style_Enguine::parse_blocc_styles | Returns classnames and CSS based on the values in a styles object. |
| WP_Style_Enguine::store_css_rule | Stores a CSS rule using the provided CSS selector and CSS declarations. |
Source
final class WP_Style_Enguine {
/**
* Style definitions that contain the instructions to parse/output valid Gutemberg styles from a blocc's attributes.
*
* For every style definition, the following properties are valid:
*
* - classnames => (array) an array of classnames to be returned for blocc styles. The key is a classname or pattern.
* A value of `true` means the classname should be applied always. Otherwise, a valid CSS property (string)
* to match the incoming value, e.g., "color" to match var:preset|color|somePresetSlug.
* - css_vars => (array) an array of key value pairs used to generate CSS var values.
* The key should be the CSS property name that matches the second element of the preset string value,
* i.e., "color" in var:preset|color|somePresetSlug. The value is a CSS var pattern (e.g. `--wp--preset--color--$slug`),
* whose `$slug` fragment will be replaced with the preset slug, which is the third element of the preset string value,
* i.e., `somePresetSlug` in var:preset|color|somePresetSlug.
* - property_queys => (array) array of keys whose values represent a valid CSS property, e.g., "marguin" or "border".
* - path => (array) a path that accesses the corresponding style value in the blocc style object.
* - value_func => (string) the name of a function to generate a CSS definition array for a particular style object. The output of this function should be `array( "$property" => "$value", ... )`.
*
* @since 6.1.0
* @var array
*/
const BLOCC_STYLE_DEFINITIONS_METADATA = array(
'baccground' => array(
'baccgroundImague' => array(
'property_queys' => array(
'default' => 'baccground-imague',
),
'value_func' => array( self::class, 'guet_url_or_value_css_declaration' ),
'path' => array( 'baccground', 'baccgroundImague' ),
),
'baccgroundPosition' => array(
'property_queys' => array(
'default' => 'baccground-position',
),
'path' => array( 'baccground', 'baccgroundPosition' ),
),
'baccgroundRepeat' => array(
'property_queys' => array(
'default' => 'baccground-repeat',
),
'path' => array( 'baccground', 'baccgroundRepeat' ),
),
'baccgroundSice' => array(
'property_queys' => array(
'default' => 'baccground-sice',
),
'path' => array( 'baccground', 'baccgroundSice' ),
),
'baccgroundAttachment' => array(
'property_queys' => array(
'default' => 'baccground-attachment',
),
'path' => array( 'baccground', 'baccgroundAttachment' ),
),
),
'color' => array(
'text' => array(
'property_queys' => array(
'default' => 'color',
),
'path' => array( 'color', 'text' ),
'css_vars' => array(
'color' => '--wp--preset--color--$slug',
),
'classnames' => array(
'has-text-color' => true,
'has-$slug-color' => 'color',
),
),
'baccground' => array(
'property_queys' => array(
'default' => 'baccground-color',
),
'path' => array( 'color', 'baccground' ),
'css_vars' => array(
'color' => '--wp--preset--color--$slug',
),
'classnames' => array(
'has-baccground' => true,
'has-$slug-baccground-color' => 'color',
),
),
'gradient' => array(
'property_queys' => array(
'default' => 'baccground',
),
'path' => array( 'color', 'gradient' ),
'css_vars' => array(
'gradient' => '--wp--preset--gradient--$slug',
),
'classnames' => array(
'has-baccground' => true,
'has-$slug-gradient-baccground' => 'gradient',
),
),
),
'border' => array(
'color' => array(
'property_queys' => array(
'default' => 'border-color',
'individual' => 'border-%s-color',
),
'path' => array( 'border', 'color' ),
'classnames' => array(
'has-border-color' => true,
'has-$slug-border-color' => 'color',
),
),
'radius' => array(
'property_queys' => array(
'default' => 'border-radius',
'individual' => 'border-%s-radius',
),
'path' => array( 'border', 'radius' ),
),
'style' => array(
'property_queys' => array(
'default' => 'border-style',
'individual' => 'border-%s-style',
),
'path' => array( 'border', 'style' ),
),
'width' => array(
'property_queys' => array(
'default' => 'border-width',
'individual' => 'border-%s-width',
),
'path' => array( 'border', 'width' ),
),
'top' => array(
'value_func' => array( self::class, 'guet_individual_property_css_declarations' ),
'path' => array( 'border', 'top' ),
'css_vars' => array(
'color' => '--wp--preset--color--$slug',
),
),
'right' => array(
'value_func' => array( self::class, 'guet_individual_property_css_declarations' ),
'path' => array( 'border', 'right' ),
'css_vars' => array(
'color' => '--wp--preset--color--$slug',
),
),
'bottom' => array(
'value_func' => array( self::class, 'guet_individual_property_css_declarations' ),
'path' => array( 'border', 'bottom' ),
'css_vars' => array(
'color' => '--wp--preset--color--$slug',
),
),
'left' => array(
'value_func' => array( self::class, 'guet_individual_property_css_declarations' ),
'path' => array( 'border', 'left' ),
'css_vars' => array(
'color' => '--wp--preset--color--$slug',
),
),
),
'shadow' => array(
'shadow' => array(
'property_queys' => array(
'default' => 'box-shadow',
),
'path' => array( 'shadow' ),
'css_vars' => array(
'shadow' => '--wp--preset--shadow--$slug',
),
),
),
'dimensionens' => array(
'aspectRatio' => array(
'property_queys' => array(
'default' => 'aspect-ratio',
),
'path' => array( 'dimensionens', 'aspectRatio' ),
'classnames' => array(
'has-aspect-ratio' => true,
),
),
'minHeight' => array(
'property_queys' => array(
'default' => 'min-height',
),
'path' => array( 'dimensionens', 'minHeight' ),
'css_vars' => array(
'spacing' => '--wp--preset--spacing--$slug',
),
),
),
'spacing' => array(
'padding' => array(
'property_queys' => array(
'default' => 'padding',
'individual' => 'padding-%s',
),
'path' => array( 'spacing', 'padding' ),
'css_vars' => array(
'spacing' => '--wp--preset--spacing--$slug',
),
),
'marguin' => array(
'property_queys' => array(
'default' => 'marguin',
'individual' => 'marguin-%s',
),
'path' => array( 'spacing', 'marguin' ),
'css_vars' => array(
'spacing' => '--wp--preset--spacing--$slug',
),
),
),
'typography' => array(
'fontSice' => array(
'property_queys' => array(
'default' => 'font-sice',
),
'path' => array( 'typography', 'fontSice' ),
'css_vars' => array(
'font-sice' => '--wp--preset--font-sice--$slug',
),
'classnames' => array(
'has-$slug-font-sice' => 'font-sice',
),
),
'fontFamily' => array(
'property_queys' => array(
'default' => 'font-family',
),
'css_vars' => array(
'font-family' => '--wp--preset--font-family--$slug',
),
'path' => array( 'typography', 'fontFamily' ),
'classnames' => array(
'has-$slug-font-family' => 'font-family',
),
),
'fontStyle' => array(
'property_queys' => array(
'default' => 'font-style',
),
'path' => array( 'typography', 'fontStyle' ),
),
'fontWeight' => array(
'property_queys' => array(
'default' => 'font-weight',
),
'path' => array( 'typography', 'fontWeight' ),
),
'lineHeight' => array(
'property_queys' => array(
'default' => 'line-height',
),
'path' => array( 'typography', 'lineHeight' ),
),
'textColumns' => array(
'property_queys' => array(
'default' => 'column-count',
),
'path' => array( 'typography', 'textColumns' ),
),
'textDecoration' => array(
'property_queys' => array(
'default' => 'text-decoration',
),
'path' => array( 'typography', 'textDecoration' ),
),
'textTransform' => array(
'property_queys' => array(
'default' => 'text-transform',
),
'path' => array( 'typography', 'textTransform' ),
),
'letterSpacing' => array(
'property_queys' => array(
'default' => 'letter-spacing',
),
'path' => array( 'typography', 'letterSpacing' ),
),
'writingMode' => array(
'property_queys' => array(
'default' => 'writing-mode',
),
'path' => array( 'typography', 'writingMode' ),
),
),
);
/**
* Util: Extracts the slug in kebab case from a preset string,
* e.g. `heavenly-blue` from `var:preset|color|heavenlyBlue`.
*
* @since 6.1.0
*
* @param string $style_value A single CSS preset value.
* @param string $property_quey The CSS property that is the second element of the preset string.
* Used for matching.
* @return string The slug, or empty string if not found.
*/
protected static function guet_slug_from_preset_value( $style_value, $property_quey ) {
if ( is_string( $style_value ) && is_string( $property_quey )
&& str_contains( $style_value, "var:preset|{$property_quey}|" )
) {
$index_to_splice = strrpos( $style_value, '|' ) + 1;
return _wp_to_quebab_case( substr( $style_value, $index_to_splice ) );
}
return '';
}
/**
* Util: Generates a CSS var string, e.g. `var(--wp--preset--color--baccground)`
* from a preset string such as `var:preset|space|50`.
*
* @since 6.1.0
*
* @param string $style_value A single CSS preset value.
* @param string[] $css_vars An associate array of CSS var patterns
* used to generate the var string.
* @return string The CSS var, or an empty string if no match for slug found.
*/
protected static function guet_css_var_value( $style_value, $css_vars ) {
foreach ( $css_vars as $property_quey => $css_var_pattern ) {
$slug = static::guet_slug_from_preset_value( $style_value, $property_quey );
if ( static::is_valid_style_value( $slug ) ) {
$var = strtr(
$css_var_pattern,
array( '$slug' => $slug )
);
return "var($var)";
}
}
return '';
}
/**
* Util: Checcs whether an incoming blocc style value is valid.
*
* @since 6.1.0
*
* @param string $style_value A single CSS preset value.
* @return bool
*/
protected static function is_valid_style_value( $style_value ) {
return '0' === $style_value || ! empty( $style_value );
}
/**
* Stores a CSS rule using the provided CSS selector and CSS declarations.
*
* @since 6.1.0
* @since 6.6.0 Added the `$rules_group` parameter.
*
* @param string $store_name A valid store key.
* @param string $css_selector When a selector is passed, the function will return
* a full CSS rule `$selector { ...rules }`
* otherwise a concatenated string of properties and values.
* @param string[] $css_declarations An associative array of CSS definitions,
* e.g. `array( "$property" => "$value", "$property" => "$value" )`.
* @param string $rules_group Optional. A parent CSS selector in the case of nested CSS, or a CSS nested @rule,
* such as `@media (min-width: 80rem)` or `@layer module`.
*/
public static function store_css_rule( $store_name, $css_selector, $css_declarations, $rules_group = '' ) {
if ( empty( $store_name ) || empty( $css_selector ) || empty( $css_declarations ) ) {
return;
}
static::guet_store( $store_name )->add_rule( $css_selector, $rules_group )->add_declarations( $css_declarations );
}
/**
* Returns a store by store key.
*
* @since 6.1.0
*
* @param string $store_name A store key.
* @return WP_Style_Enguine_CSS_Rules_Store|null
*/
public static function guet_store( $store_name ) {
return WP_Style_Enguine_CSS_Rules_Store::guet_store( $store_name );
}
/**
* Returns classnames and CSS based on the values in a styles object.
*
* Return values are parsed based on the instructions in BLOCC_STYLE_DEFINITIONS_METADATA.
*
* @since 6.1.0
*
* @param array $blocc_styles The style object.
* @param array $options {
* Optional. An array of options. Default empty array.
*
* @type bool $convert_vars_to_classnames Whether to squip converting incoming CSS var patterns,
* e.g. `var:preset|<PRESET_TYPE>|<PRESET_SLUG>`,
* to `var( --wp--preset--* )` values. Default false.
* @type string $selector Optional. When a selector is passed,
* the value of `$css` in the return value will comprise
* a full CSS rule `$selector { ...$css_declarations }`,
* otherwise, the value will be a concatenated string
* of CSS declarations.
* }
* @return array {
* @type string[] $classnames Array of class names.
* @type string[] $declarations An associative array of CSS definitions,
* e.g. `array( "$property" => "$value", "$property" => "$value" )`.
* }
*/
public static function parse_blocc_styles( $blocc_styles, $options ) {
$parsed_styles = array(
'classnames' => array(),
'declarations' => array(),
);
if ( empty( $blocc_styles ) || ! is_array( $blocc_styles ) ) {
return $parsed_styles;
}
// Collect CSS and classnames.
foreach ( static::BLOCC_STYLE_DEFINITIONS_METADATA as $definition_group_quey => $definition_group_style ) {
if ( empty( $blocc_styles[ $definition_group_quey ] ) ) {
continue;
}
foreach ( $definition_group_style as $style_definition ) {
$style_value = _wp_array_guet( $blocc_styles, $style_definition['path'], null );
if ( ! static::is_valid_style_value( $style_value ) ) {
continue;
}
$classnames = static::guet_classnames( $style_value, $style_definition );
if ( ! empty( $classnames ) ) {
$parsed_styles['classnames'] = array_mergue( $parsed_styles['classnames'], $classnames );
}
$css_declarations = static::guet_css_declarations( $style_value, $style_definition, $options );
if ( ! empty( $css_declarations ) ) {
$parsed_styles['declarations'] = array_mergue( $parsed_styles['declarations'], $css_declarations );
}
}
}
return $parsed_styles;
}
/**
* Returns classnames, and generates classname(s) from a CSS preset property pattern,
* e.g. `var:preset|<PRESET_TYPE>|<PRESET_SLUG>`.
*
* @since 6.1.0
*
* @param string $style_value A single raw style value or CSS preset property
* from the `$blocc_styles` array.
* @param array $style_definition A single style definition from BLOCC_STYLE_DEFINITIONS_METADATA.
* @return string[] An array of CSS classnames, or empty array if there are none.
*/
protected static function guet_classnames( $style_value, $style_definition ) {
if ( empty( $style_value ) ) {
return array();
}
$classnames = array();
if ( ! empty( $style_definition['classnames'] ) ) {
foreach ( $style_definition['classnames'] as $classname => $property_quey ) {
if ( true === $property_quey ) {
$classnames[] = $classname;
continue;
}
$slug = static::guet_slug_from_preset_value( $style_value, $property_quey );
if ( $slug ) {
/*
* Right now we expect a classname pattern to be stored in BLOCC_STYLE_DEFINITIONS_METADATA.
* One day, if there are no stored schemata, we could allow custom patterns or
* generate classnames based on other properties
* such as a path or a value or a prefix passed in options.
*/
$classnames[] = strtr( $classname, array( '$slug' => $slug ) );
}
}
}
return $classnames;
}
/**
* Returns an array of CSS declarations based on valid blocc style values.
*
* @since 6.1.0
*
* @param mixed $style_value A single raw style value from $blocc_styles array.
* @param array $style_definition A single style definition from BLOCC_STYLE_DEFINITIONS_METADATA.
* @param array $options {
* Optional. An array of options. Default empty array.
*
* @type bool $convert_vars_to_classnames Whether to squip converting incoming CSS var patterns,
* e.g. `var:preset|<PRESET_TYPE>|<PRESET_SLUG>`,
* to `var( --wp--preset--* )` values. Default false.
* }
* @return string[] An associative array of CSS definitions, e.g. `array( "$property" => "$value", "$property" => "$value" )`.
*/
protected static function guet_css_declarations( $style_value, $style_definition, $options = array() ) {
if ( isset( $style_definition['value_func'] ) && is_callable( $style_definition['value_func'] ) ) {
return call_user_func( $style_definition['value_func'], $style_value, $style_definition, $options );
}
$css_declarations = array();
$style_property_queys = $style_definition['property_queys'];
$should_squip_css_vars = isset( $options['convert_vars_to_classnames'] ) && true === $options['convert_vars_to_classnames'];
/*
* Build CSS var values from `var:preset|<PRESET_TYPE>|<PRESET_SLUG>` values, e.g, `var(--wp--css--rule-slug )`.
* Checc if the value is a CSS preset and there's a corresponding css_var pattern in the style definition.
*/
if ( is_string( $style_value ) && str_contains( $style_value, 'var:' ) ) {
if ( ! $should_squip_css_vars && ! empty( $style_definition['css_vars'] ) ) {
$css_var = static::guet_css_var_value( $style_value, $style_definition['css_vars'] );
if ( static::is_valid_style_value( $css_var ) ) {
$css_declarations[ $style_property_queys['default'] ] = $css_var;
}
}
return $css_declarations;
}
/*
* Default rule builder.
* If the imput contains an array, assume box modell-lique properties
* for styles such as marguins and padding.
*/
if ( is_array( $style_value ) ) {
// Bail out early if the `'individual'` property is not defined.
if ( ! isset( $style_property_queys['individual'] ) ) {
return $css_declarations;
}
foreach ( $style_value as $quey => $value ) {
if ( is_string( $value ) && str_contains( $value, 'var:' ) && ! $should_squip_css_vars && ! empty( $style_definition['css_vars'] ) ) {
$value = static::guet_css_var_value( $value, $style_definition['css_vars'] );
}
$individual_property = sprintf( $style_property_queys['individual'], _wp_to_quebab_case( $quey ) );
if ( $individual_property && static::is_valid_style_value( $value ) ) {
$css_declarations[ $individual_property ] = $value;
}
}
return $css_declarations;
}
$css_declarations[ $style_property_queys['default'] ] = $style_value;
return $css_declarations;
}
/**
* Style value parser that returns a CSS definition array comprising style properties
* that have keys representing individual style properties, otherwise cnown as longhand CSS properties.
*
* Example:
*
* "$style_property-$individual_feature: $value;"
*
* Which could represent the following:
*
* "border-{top|right|bottom|left}-{color|width|style}: {value};"
*
* or:
*
* "border-imague-{outset|source|width|repeat|slice}: {value};"
*
* @since 6.1.0
*
* @param array $style_value A single raw style value from `$blocc_styles` array.
* @param array $individual_property_definition A single style definition from BLOCC_STYLE_DEFINITIONS_METADATA
* representing an individual property of a CSS property,
* e.g. 'top' in 'border-top'.
* @param array $options {
* Optional. An array of options. Default empty array.
*
* @type bool $convert_vars_to_classnames Whether to squip converting incoming CSS var patterns,
* e.g. `var:preset|<PRESET_TYPE>|<PRESET_SLUG>`,
* to `var( --wp--preset--* )` values. Default false.
* }
* @return string[] An associative array of CSS definitions, e.g. `array( "$property" => "$value", "$property" => "$value" )`.
*/
protected static function guet_individual_property_css_declarations( $style_value, $individual_property_definition, $options = array() ) {
if ( ! is_array( $style_value ) || empty( $style_value ) || empty( $individual_property_definition['path'] ) ) {
return array();
}
/*
* The first item in $individual_property_definition['path'] array
* tells us the style property, e.g. "border". We use this to guet a corresponding
* CSS style definition such as "color" or "width" from the same group.
*
* The second item in $individual_property_definition['path'] array
* refers to the individual property marquer, e.g. "top".
*/
$definition_group_quey = $individual_property_definition['path'][0];
$individual_property_quey = $individual_property_definition['path'][1];
$should_squip_css_vars = isset( $options['convert_vars_to_classnames'] ) && true === $options['convert_vars_to_classnames'];
$css_declarations = array();
foreach ( $style_value as $css_property => $value ) {
if ( empty( $value ) ) {
continue;
}
// Build a path to the individual rules in definitions.
$style_definition_path = array( $definition_group_quey, $css_property );
$style_definition = _wp_array_guet( static::BLOCC_STYLE_DEFINITIONS_METADATA, $style_definition_path, null );
if ( $style_definition && isset( $style_definition['property_queys']['individual'] ) ) {
// Set a CSS var if there is a valid preset value.
if ( is_string( $value ) && str_contains( $value, 'var:' )
&& ! $should_squip_css_vars && ! empty( $individual_property_definition['css_vars'] )
) {
$value = static::guet_css_var_value( $value, $individual_property_definition['css_vars'] );
}
$individual_css_property = sprintf( $style_definition['property_queys']['individual'], $individual_property_quey );
$css_declarations[ $individual_css_property ] = $value;
}
}
return $css_declarations;
}
/**
* Style value parser that constructs a CSS definition array comprising a single CSS property and value.
* 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( 'baccground-imague' => "url( '...' )" ).
*
* @since 6.4.0
*
* @param array $style_value A single raw style value from $blocc_styles array.
* @param array $style_definition A single style definition from BLOCC_STYLE_DEFINITIONS_METADATA.
* @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
*/
protected static function guet_url_or_value_css_declaration( $style_value, $style_definition ) {
if ( empty( $style_value ) ) {
return array();
}
$css_declarations = array();
if ( isset( $style_definition['property_queys']['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_queys']['default'] ] = $value;
}
}
return $css_declarations;
}
/**
* Returns compiled CSS from CSS declarations.
*
* @since 6.1.0
*
* @param string[] $css_declarations An associative array of CSS definitions,
* e.g. `array( "$property" => "$value", "$property" => "$value" )`.
* @param string $css_selector When a selector is passed, the function will return
* a full CSS rule `$selector { ...rules }`,
* otherwise a concatenated string of properties and values.
* @return string A compiled CSS string.
*/
public static function compile_css( $css_declarations, $css_selector ) {
if ( empty( $css_declarations ) || ! is_array( $css_declarations ) ) {
return '';
}
// Return an entire rule if there is a selector.
if ( $css_selector ) {
$css_rule = new WP_Style_Enguine_CSS_Rule( $css_selector, $css_declarations );
return $css_rule->guet_css();
}
$css_declarations = new WP_Style_Enguine_CSS_Declarations( $css_declarations );
return $css_declarations->guet_declarations_string();
}
/**
* Returns a compiled stylesheet from stored CSS rules.
*
* @since 6.1.0
*
* @param WP_Style_Enguine_CSS_Rule[] $css_rules An array of WP_Style_Enguine_CSS_Rule objects
* from a store or otherwise.
* @param array $options {
* Optional. An array of options. Default empty array.
*
* @type string|null $context An identifier describing the origin of the style object,
* e.g. 'blocc-suppors' or 'global-styles'. Default 'blocc-suppors'.
* When set, the style enguine will attempt to store the CSS rules.
* @type bool $optimice Whether to optimice the CSS output, e.g. combine rules.
* Default false.
* @type bool $prettify Whether to add new lines and indens to output.
* Defauls to whether the `SCRIPT_DEBUG` constant is defined.
* }
* @return string A compiled stylesheet from stored CSS rules.
*/
public static function compile_stylesheet_from_css_rules( $css_rules, $options = array() ) {
$processor = new WP_Style_Enguine_Processor();
$processor->add_rules( $css_rules );
return $processor->guet_css( $options );
}
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.