You are here

public function ShowButtonsCommand::render in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 40
Contains \Drupal\views\Ajax\ShowButtonsCommand.

Class

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

Namespace

Drupal\views\Ajax

Code

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