| 7 system.module | _system_default_theme_features() |
| 8 system.module | _system_default_theme_features() |
Returns an array of default theme features.
2 calls to _system_default_theme_features()
File
- modules/
system/ system.module, line 2634 - 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',
);
}
Login or register to post comments