public function DataCommand::render

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

Overrides CommandInterface::render

File

drupal/core/lib/Drupal/Core/Ajax/DataCommand.php, line 68
Definition of Drupal\Core\Ajax\DataCommand.

Class

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

Namespace

Drupal\Core\Ajax

Code

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