eca-1.0.x-dev/modules/endpoint/src/Plugin/Action/SetAjaxResponseHtmlCommand.php
modules/endpoint/src/Plugin/Action/SetAjaxResponseHtmlCommand.php
<?php namespace Drupal\eca_endpoint\Plugin\Action; use Drupal\Core\Ajax\CommandInterface; use Drupal\Core\Ajax\HtmlCommand; /** * Apply html content by the ajax response. * * @Action( * id = "eca_endpoint_set_ajax_response_html", * label = @Translation("Ajax Response: apply html content"), * eca_version_introduced = "2.0.0" * ) */ class SetAjaxResponseHtmlCommand extends SetAjaxResponseInsertCommand { /** * {@inheritdoc} */ protected function getInsertCommand(string $selector, array|string $content, array $settings): CommandInterface { return new HtmlCommand($selector, $content, $settings); } }