function olivero_element_info_alter in Drupal 9
Implements hook_element_info_alter().
File
- core/
themes/ olivero/ olivero.theme, line 571 - Functions to support theming in the Olivero theme.
Code
function olivero_element_info_alter(&$info) {
if (array_key_exists('text_format', $info)) {
$info['text_format']['#pre_render'][] = [
OliveroPreRender::class,
'textFormat',
];
}
if (isset($info['status_messages'])) {
$info['status_messages']['#pre_render'][] = [
OliveroPreRender::class,
'messagePlaceholder',
];
}
}