Guest User

Untitled

a guest
Jun 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Implements hook_form_alter().
  5. */
  6. function mymodule_form_alter(&$form, DrupalCoreFormFormStateInterface &$form_state, $form_id) {
  7. $form['field_slideshow_image']['#states'] = [
  8. 'visible' => [
  9. 'select[name="field_selection_display"]' => ['value' => 'slideshow']
  10. ]
  11. ];
  12. $form['field_image']['#states'] = [
  13. 'visible' => [
  14. 'select[name="field_selection_display"]' => ['value' => 'image']
  15. ]
  16. ];
  17. $form['field_video_embed']['#states'] = [
  18. 'visible' => [
  19. 'select[name="field_selection_display"]' => ['value' => 'videoembed']
  20. ]
  21. ];
  22. }
Add Comment
Please, Sign In to add comment