AjaxTestDialogForm.php in Drupal 10
File
core/modules/system/tests/modules/ajax_test/src/Form/AjaxTestDialogForm.php
View source
<?php
namespace Drupal\ajax_test\Form;
use Drupal\ajax_test\Controller\AjaxTestController;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Ajax\AjaxResponse;
use Drupal\Core\Ajax\OpenModalDialogCommand;
use Drupal\Core\Ajax\OpenDialogCommand;
use Drupal\Core\Form\FormStateInterface;
class AjaxTestDialogForm extends FormBase {
public function getFormId() {
return 'ajax_test_dialog_form';
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form['button1'] = [
'#type' => 'submit',
'#name' => 'button1',
'#value' => 'Button 1 (modal)',
'#ajax' => [
'callback' => '::modal',
],
];
$form['button2'] = [
'#type' => 'submit',
'#name' => 'button2',
'#value' => 'Button 2 (non-modal)',
'#ajax' => [
'callback' => '::nonModal',
],
];
return $form;
}
public function validateForm(array &$form, FormStateInterface $form_state) {
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$form_state
->setRedirect('ajax_test.dialog_contents');
}
public function modal(&$form, FormStateInterface $form_state) {
return $this
->dialog(TRUE);
}
public function nonModal(&$form, FormStateInterface $form_state) {
return $this
->dialog(FALSE);
}
protected function dialog($is_modal = FALSE) {
$content = AjaxTestController::dialogContents();
$response = new AjaxResponse();
$title = $this
->t('AJAX Dialog & contents');
$content['#attached']['library'][] = 'core/drupal.dialog.ajax';
if ($is_modal) {
$response
->addCommand(new OpenModalDialogCommand($title, $content));
}
else {
$selector = '#ajax-test-dialog-wrapper-1';
$response
->addCommand(new OpenDialogCommand($selector, $title, $content));
}
return $response;
}
}