Skip to content

Instantly share code, notes, and snippets.

@derhasi
Last active August 29, 2015 14:05
Show Gist options
  • Save derhasi/9fddcf5129419ad562aa to your computer and use it in GitHub Desktop.
Save derhasi/9fddcf5129419ad562aa to your computer and use it in GitHub Desktop.
Disable features components for export and display.
<?php
/**
* @file
* Disable features components for export and display.
*/
/**
* Implements hook_features_api_alter().
*/
function mycustom_features_api_alter(&$components) {
// We do not want to export menu links, as those are content.
unset($components['menu_links']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment