Same name and namespace in other branches
  1. 7.x modules/system/system.module \_system_default_theme_features()
  2. 8.9.x core/includes/theme.inc \_system_default_theme_features()
  3. 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 113
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',
  ];
}