ShowButtonsCommand::render

public 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 array(
    'command' => 'viewsShowButtons',
    'changed' => $this->changed,
  );
}
doc_Drupal
2016-10-29 09:43:03
Comments
Leave a Comment

Please login to continue.