You are here

public function ScrollTopCommand::render in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Ajax/ScrollTopCommand.php \Drupal\views\Ajax\ScrollTopCommand::render()

Return an array to be run through json_encode and sent to the client.

Overrides CommandInterface::render

File

core/modules/views/src/Ajax/ScrollTopCommand.php, line 34

Class

ScrollTopCommand
Provides an AJAX command for scrolling to the top of an element.

Namespace

Drupal\views\Ajax

Code

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