Created
July 19, 2021 11:13
-
-
Save MatthieuScarset/d559afd5dcab4cb585bf4671e55c2a96 to your computer and use it in GitHub Desktop.
Drupal selection handlers views
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$args = []; | |
$form['user_in_charge'] += [ | |
'#title' => t('Entity autocomplete'), | |
'#type' => 'entity_autocomplete', | |
'#selection_handler' => 'views', | |
'#selection_settings' => [ | |
'view' => [ | |
'view_name' => 'view_machine_name', | |
'display_name' => 'entity_reference', | |
'arguments' => $args, | |
], | |
'match_operator' => 'CONTAINS', | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment