public AppendCommand::render()
Implements Drupal\Core\Ajax\CommandInterface:render().
Overrides InsertCommand::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 array(
'command' => 'insert',
'method' => 'append',
'selector' => $this->selector,
'data' => $this->getRenderedContent(),
'settings