function hook_features_pipe_component_alter in Features 6
Same name and namespace in other branches
- 7.2 features.api.php \hook_features_pipe_COMPONENT_alter()
- 7 features.api.php \hook_features_pipe_COMPONENT_alter()
Alter the pipe array for a given component. This hook should be implemented with the name of the component type in place of `component` in the function name, e.g. `features_pipe_views_alter()` will alter the pipe for the Views component.
Parameters
array &$pipe: By reference. The pipe array of further processors that should be called.
array $data: An array of machine names for the component in question to be exported.
array &$export: By reference. An array of all components to be exported with a given feature.
File
- ./
features.api.php, line 243
Code
function hook_features_pipe_component_alter(&$pipe, $data, $export) {
}