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

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

Overrides InsertCommand::render

File

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

Class

AfterCommand
An AJAX command for calling the jQuery after() method.

Namespace

Drupal\Core\Ajax

Code

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