public function AfterCommand::render in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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 29 - Contains \Drupal\Core\Ajax\AfterCommand.
Class
- AfterCommand
- An AJAX command for calling the jQuery after() method.
Namespace
Drupal\Core\AjaxCode
public function render() {
return array(
'command' => 'insert',
'method' => 'after',
'selector' => $this->selector,
'data' => $this
->getRenderedContent(),
'settings' => $this->settings,
);
}