Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save balintbrews/e647e768e422e187683d to your computer and use it in GitHub Desktop.
Save balintbrews/e647e768e422e187683d to your computer and use it in GitHub Desktop.
Drupal snippet: Display only the relevant feature group on the Features admin UI
<?php
function YOUR_MODULE_form_features_admin_form_alter(&$form, &$form_state, $form_id) {
$form['packages']['#access'] = FALSE;
unset($form['package_YOUR_FEATURES_GROUP']['#group']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment