public function AppendCommand::render in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Ajax/AppendCommand.php \Drupal\Core\Ajax\AppendCommand::render()
Implements Drupal\Core\Ajax\CommandInterface:render().
Overrides InsertCommand::render
File
- core/
lib/ Drupal/ Core/ Ajax/ AppendCommand.php, line 29 - Contains \Drupal\Core\Ajax\AppendCommand.
Class
- AppendCommand
- An AJAX command for calling the jQuery append() method.
Namespace
Drupal\Core\AjaxCode
public function render() {
return array(
'command' => 'insert',
'method' => 'append',
'selector' => $this->selector,
'data' => $this
->getRenderedContent(),
'settings' => $this->settings,
);
}