Skip to content

Instantly share code, notes, and snippets.

@danreb
Created November 16, 2012 02:38
Show Gist options
  • Select an option

  • Save danreb/4083444 to your computer and use it in GitHub Desktop.

Select an option

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
<?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