Last active
August 29, 2015 14:05
-
-
Save derhasi/9fddcf5129419ad562aa to your computer and use it in GitHub Desktop.
Disable features components for export and display.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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