You are here

public function DataCommand::render in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Ajax/DataCommand.php \Drupal\Core\Ajax\DataCommand::render()
  2. 10 core/lib/Drupal/Core/Ajax/DataCommand.php \Drupal\Core\Ajax\DataCommand::render()

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

Overrides CommandInterface::render

File

core/lib/Drupal/Core/Ajax/DataCommand.php, line 63

Class

DataCommand
An AJAX command for implementing jQuery's data() method.

Namespace

Drupal\Core\Ajax

Code

public function render() {
  return [
    'command' => 'data',
    'selector' => $this->selector,
    'name' => $this->name,
    'value' => $this->value,
  ];
}