Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $ajaxResponse = new \Drupal\Core\Ajax\AjaxResponse();
  2. $my_form = \Drupal::formBuilder()->getForm('Drupal\my_module\Form\DefaultSettingsForm');
  3. $render = \Drupal::service('renderer')->render($my_form);
  4. $modalDialog = new \Drupal\Core\Ajax\OpenModalDialogCommand('My Title', $render);
  5. $ajaxResponse->addCommand($modalDialog);
  6. return $ajaxResponse;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement