You are here

public function ShowButtonsCommand::render in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Ajax/ShowButtonsCommand.php \Drupal\views\Ajax\ShowButtonsCommand::render()
  2. 10 core/modules/views/src/Ajax/ShowButtonsCommand.php \Drupal\views\Ajax\ShowButtonsCommand::render()

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

Overrides CommandInterface::render

File

core/modules/views/src/Ajax/ShowButtonsCommand.php, line 35

Class

ShowButtonsCommand
Provides an AJAX command for showing the save and cancel buttons.

Namespace

Drupal\views\Ajax

Code

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