Created
November 16, 2012 02:38
-
-
Save danreb/4083444 to your computer and use it in GitHub Desktop.
Hide Drupal Specific module from list of modules in update list at admin/reports/updates
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 | |
| function commerce_subscriptions_update_projects_alter(&$projects) { | |
| // Hide a site-specific module from the list. | |
| unset($projects['commerce_subscriptions']); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment