Remove custom Drupal modules and themes from the update status page

Clean up your update status page to remove custom modules in Drupal 7

Remove custom Drupal modules and themes from the update status page

Throughout the course of building large complex Drupal sites, you invariably end up writing a suite of custom modules and features to produce the required functionality and behaviour for the site.

One issue is that when you do create these custom modules, the core update status page attempts to find new versions of your custom modules on the Drupal.org update server. Of course this check fails, but it takes up precious time to work that the module is not on drupal.org and also the grey box looks kind of ugly.

The above image is an example of this for one of my recent Drupal sites I worked on.

Remove them from the update status page

In order to remove custom modules from this page, there is a convenient hook you can utilise hook_update_projects_alter(). Here is an example piece of code that we have in one of our custom modules:

/**
 * Implements hook_update_projects_alter().
 */
function MYMODULE_update_projects_alter(&$projects) {
  // We wish to remove our custom modules from any drupal.org updates.
  foreach($projects as $key => $project) {
    // Most custom module match this naming convention.
    if (preg_match('/^mts_.*$/', $key)) {
      unset($projects[$key]);
    }
    // These custom modules do not match the above.
    else if (in_array($key, array('token_i18n_macrons'))) {
      unset($projects[$key]);
    }
  }
}

Notice the preg_match() on module name - I find it really helpful to keep all custom modules (and themes) sudo namespaced by prefixing a small word at the front (in this case ‘mts_’). This means that this code will also work for future custom modules as well.

Hope this simple tutorial has helped you out a little. Let me know if you have any other tips and tricks for custom modules and Drupal in the comments.

Update August 22, 2013

It has been pointed out in the comments below, and on Reddit that if you create a very specific hierarchy for your modules the above code is not needed. The correct hierarchy to use is

  • sites/all/modules/contrib (all contribute modules)
  • sites/all/modules/custom (all custom modules and features)

If you however maintain a separate directory for features (like we do, and have then nest under sites/all/modules/features) then the above code is still relevant.