Created
December 20, 2012 01:53
-
-
Save danreb/4342364 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 custom_update_projects_alter(&$projects) { | |
| // Hide a site-specific module from the list. | |
| unset($projects['custom']); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment