1 system.api.php hook_icon_allowed_styles_alter(&$allowed_styles)

Modify the list of available icon styles.

@since 1.34.0 Hook added.

Parameters

array $allowed_styles: This parameter is passed by reference.

See also

icon_allowed_styles()

Related topics

File

core/modules/system/system.api.php, line 562
Hooks provided by Backdrop core and the System module.

Code

function hook_icon_allowed_styles_alter(&$allowed_styles) {
  $allowed_styles['my_module_style'] = t('My module style');
}