function _system_default_theme_features in Drupal 10
Same name and namespace in other branches
- 8 core/includes/theme.inc \_system_default_theme_features()
- 7 modules/system/system.module \_system_default_theme_features()
- 9 core/includes/theme.inc \_system_default_theme_features()
Returns an array of default theme features.
See also
\Drupal\Core\Extension\ThemeExtensionList::$defaults
1 call to _system_default_theme_features()
- theme_get_setting in core/
includes/ theme.inc - Retrieves a setting for the current theme or for a given theme.
File
- core/
includes/ theme.inc, line 106 - The theme system, which controls the output of Drupal.
Code
function _system_default_theme_features() {
return [
'favicon',
'logo',
'node_user_picture',
'comment_user_picture',
'comment_user_verification',
];
}