You are here

JsAjaxTestCommand.php in Drupal 9

File

core/modules/system/tests/modules/js_ajax_test/src/Ajax/JsAjaxTestCommand.php
View source
<?php

namespace Drupal\js_ajax_test\Ajax;

use Drupal\Core\Ajax\CommandInterface;

/**
 * Test Ajax command.
 */
class JsAjaxTestCommand implements CommandInterface {

  /**
   * {@inheritdoc}
   */
  public function render() {
    return [
      'command' => 'jsAjaxTestCommand',
      'selector' => '#js_ajax_test_form_wrapper',
    ];
  }

}

Classes

Namesort descending Description
JsAjaxTestCommand Test Ajax command.