function _system_default_theme_features

Returns an array of default theme features.

2 calls to _system_default_theme_features()
theme_get_setting in drupal/core/includes/theme.inc
Retrieve a setting for the current theme or for a given theme.
_system_rebuild_theme_data in drupal/core/modules/system/system.module
Helper function to scan and collect theme .info data and their engines.

File

drupal/core/modules/system/system.module, line 3059
Configuration system that lets administrators modify the workings of the site.

Code

function _system_default_theme_features() {
  return array(
    'logo',
    'favicon',
    'name',
    'slogan',
    'node_user_picture',
    'comment_user_picture',
    'comment_user_verification',
    'main_menu',
    'secondary_menu',
  );
}