Skip to content

Instantly share code, notes, and snippets.

@MatthieuScarset
Created July 19, 2021 11:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MatthieuScarset/d559afd5dcab4cb585bf4671e55c2a96 to your computer and use it in GitHub Desktop.
Save MatthieuScarset/d559afd5dcab4cb585bf4671e55c2a96 to your computer and use it in GitHub Desktop.
Drupal selection handlers views
$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