Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MatthieuScarset/fe4413e174d674f11197b03c6957def6 to your computer and use it in GitHub Desktop.
Save MatthieuScarset/fe4413e174d674f11197b03c6957def6 to your computer and use it in GitHub Desktop.
Drupal 8 - Test if is an Ajax Form
if ($form_state->getUserInput()['_drupal_ajax']) {
// Display message into the Ajax form returned.
$form['warnings'] = ['#type' => 'status_messages', '#weight' => -1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment