You are here

function _system_default_theme_features in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/system.module \_system_default_theme_features()

Returns an array of default theme features.

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/modules/system/system.module, line 1066
Configuration system that lets administrators modify the workings of the site.

Code

function _system_default_theme_features() {
  return array(
    'favicon',
    'node_user_picture',
    'comment_user_picture',
    'comment_user_verification',
  );
}