function AppendCommand::render
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Ajax/AppendCommand.php \Drupal\Core\Ajax\AppendCommand::render()
- 10 core/lib/Drupal/Core/Ajax/AppendCommand.php \Drupal\Core\Ajax\AppendCommand::render()
- 11.x 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\AjaxCode
public function render() {
return [
'command' => 'insert',
'method' => 'append',
'selector' => $this->selector,
'data' => $this->getRenderedContent(),
'settings' => $this->settings,
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.