You are here

function features_form_system_modules_alter in Features 6

Same name and namespace in other branches
  1. 7.2 features.module \features_form_system_modules_alter()
  2. 7 features.module \features_form_system_modules_alter()

Implementation of hook_form_alter() for system_modules form.

File

./features.module, line 662
Module file for the features module, which enables the capture and management of features in Drupal. A feature is a collection of Drupal entities which taken together statisfy a certain use-case.

Code

function features_form_system_modules_alter(&$form) {
  features_rebuild();
}