Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Ajax/AppendCommand.php \Drupal\Core\Ajax\AppendCommand::render()
  2. 9 core/lib/Drupal/Core/Ajax/AppendCommand.php \Drupal\Core\Ajax\AppendCommand::render()

Implements Drupal\Core\Ajax\CommandInterface:render().

Overrides InsertCommand::render

1 method overrides AppendCommand::render()
AjaxTestCommandReturnPromise::render in core/modules/system/tests/modules/ajax_test/src/Ajax/AjaxTestCommandReturnPromise.php
Implements Drupal\Core\Ajax\CommandInterface:render().

File

core/lib/Drupal/Core/Ajax/AppendCommand.php, line 24

Class

AppendCommand
An AJAX command for calling the jQuery append() method.

Namespace

Drupal\Core\Ajax

Code

public function render() {
  return [
    'command' => 'insert',
    'method' => 'append',
    'selector' => $this->selector,
    'data' => $this
      ->getRenderedContent(),
    'settings' => $this->settings,
  ];
}