You are here

function social_album_field_group_form_process_alter in Open Social 10.2.x

Same name and namespace in other branches
  1. 10.3.x modules/social_features/social_album/social_album.module \social_album_field_group_form_process_alter()
  2. 10.0.x modules/social_features/social_album/social_album.module \social_album_field_group_form_process_alter()
  3. 10.1.x modules/social_features/social_album/social_album.module \social_album_field_group_form_process_alter()

Implements hook_field_group_form_process_alter().

File

modules/social_features/social_album/social_album.module, line 385
The Social Album module.

Code

function social_album_field_group_form_process_alter(array &$element, &$group, &$complete_form) {
  if ($group->group_name === 'group_album_settings') {
    $element['#states'] = [
      'visible' => [
        ':input[name="groups"]' => [
          '!value' => '_none',
        ],
      ],
    ];
  }
}