Skip to content
AjaxFormsTestLazyLoadForm.php 1.38 KiB
Newer Older
<?php

namespace Drupal\ajax_forms_test\Form;

use Drupal\Core\Form\FormBase;

/**
 * Form builder: Builds a form that triggers a simple AJAX callback.
 */
class AjaxFormsTestLazyLoadForm extends FormBase {

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'ajax_forms_test_lazy_load_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    // We attach a JavaScript setting, so that one of the generated AJAX
    // commands will be a settings command. We can then check the settings
    // command to ensure that the 'currentPath' setting is not part
    // of the Ajax response.
    $form['#attached']['drupalSettings']['test'] = 'currentPathUpdate';
      '#title' => $this->t('Add files'),
      '#type' => 'checkbox',
      '#default_value' => FALSE,
      '#type' => 'submit',
      '#value' => $this->t('Submit'),
        'wrapper' => 'ajax-forms-test-lazy-load-ajax-wrapper',
        'callback' => 'ajax_forms_test_lazy_load_form_ajax',
      '#prefix' => '<div id="ajax-forms-test-lazy-load-ajax-wrapper"></div>',
  public function submitForm(array &$form, FormStateInterface $form_state) {