JezK
Edit File: StyleClassesDefaults.php
<?php namespace GeminiLabs\SiteReviews\Defaults; class StyleClassesDefaults extends DefaultsAbstract { /** * The values that should be concatenated. * * @var string[] */ public array $concatenated = [ 'button', 'description', 'field', 'fieldset', 'form', 'input', 'input_checkbox', 'input_radio', 'input_range', 'input_toggle', 'label', 'label_checkbox', 'label_radio', 'label_range', 'label_toggle', 'select', 'textarea', ]; /** * The values that should be sanitized. * This is done after $casts and before $enums. */ public array $sanitize = [ 'button' => 'attr-class', 'description' => 'attr-class', 'field' => 'attr-class', 'fieldset' => 'attr-class', 'form' => 'attr-class', 'input' => 'attr-class', 'input_checkbox' => 'attr-class', 'input_radio' => 'attr-class', 'input_range' => 'attr-class', 'input_toggle' => 'attr-class', 'label' => 'attr-class', 'label_checkbox' => 'attr-class', 'label_radio' => 'attr-class', 'label_range' => 'attr-class', 'label_toggle' => 'attr-class', 'select' => 'attr-class', 'textarea' => 'attr-class', ]; protected function defaults(): array { return [ 'button' => 'glsr-button', 'description' => 'glsr-description', 'field' => 'glsr-field', 'fieldset' => '', 'form' => 'glsr-form', 'input' => '', 'input_checkbox' => '', 'input_radio' => '', 'input_range' => '', 'input_toggle' => '', 'label' => 'glsr-label', 'label_checkbox' => '', 'label_radio' => '', 'label_range' => '', 'label_toggle' => '', 'select' => '', 'textarea' => '', ]; } /** * Finalize provided values, this always runs last. */ protected function finalize(array $values = []): array { if ('glsr-button' === ($values['button'] ?? '')) { $values['button'] .= ' wp-block-button__link wp-element-button'; // fallback to block styling! } return $values; } }