function features_get_default_hooks in Features 7
Same name and namespace in other branches
- 6 features.export.inc \features_get_default_hooks()
- 7.2 features.export.inc \features_get_default_hooks()
Gets the available default hooks keyed by components.
3 calls to features_get_default_hooks()
- features_get_default in ./
features.export.inc - Get defaults for a given module/component pair.
- features_get_default_map in ./
features.export.inc - Get a map of components to their providing modules.
- features_get_normal in ./
features.export.inc - Get normal objects for a given module/component pair.
File
- ./
features.export.inc, line 359
Code
function features_get_default_hooks($component = NULL, $reset = FALSE) {
return features_get_components($component, 'default_hook', $reset);
}