_system_default_theme_features()
Returns an array of default theme features.
See also
\Drupal\Core\Extension\ThemeHandler::$defaultFeatures
File
- core/includes/theme.inc, line 104
- The theme system, which controls the output of Drupal.
Code
1 2 3 4 5 6 7 8 9 | function _system_default_theme_features() { return array ( 'favicon' , 'logo' , 'node_user_picture' , 'comment_user_picture' , 'comment_user_verification' , ); } |
Please login to continue.