Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / system / tests / modules / js_ajax_test / src / Ajax / JsAjaxTestCommand.php
1 <?php
2
3 namespace Drupal\js_ajax_test\Ajax;
4
5 use Drupal\Core\Ajax\CommandInterface;
6
7 /**
8  * Test Ajax command.
9  */
10 class JsAjaxTestCommand implements CommandInterface {
11
12   /**
13    * {@inheritdoc}
14    */
15   public function render() {
16     return [
17       'command' => 'jsAjaxTestCommand',
18       'selector' => '#js_ajax_test_form_wrapper',
19     ];
20   }
21
22 }