class ShowButtonsCommand

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

This command is implemented in Drupal.AjaxCommands.prototype.viewsShowButtons.

Hierarchy

Expanded class hierarchy of ShowButtonsCommand

File

drupal/core/modules/views/lib/Drupal/views/Ajax/ShowButtonsCommand.php, line 17
Contains \Drupal\views\Ajax\ShowButtonsCommand.

Namespace

Drupal\views\Ajax
View source
class ShowButtonsCommand implements CommandInterface {

  /**
   * Implements \Drupal\Core\Ajax\CommandInterface::render().
   */
  public function render() {
    return array(
      'command' => 'viewsShowButtons',
    );
  }

}

Members