You are here

GeysirReattachBehaviors.php in Geysir 8

Namespace

Drupal\geysir\Ajax

File

src/Ajax/GeysirReattachBehaviors.php
View source
<?php

namespace Drupal\geysir\Ajax;

use Drupal\Core\Ajax\CommandInterface;

/**
 * Defines an AJAX command that closes the current active dialog.
 *
 * @ingroup ajax
 */
class GeysirReattachBehaviors implements CommandInterface {

  /**
   * {@inheritdoc}
   */
  public function render() {
    return [
      'command' => 'geysirReattachBehaviors',
    ];
  }

}

Classes

Namesort descending Description
GeysirReattachBehaviors Defines an AJAX command that closes the current active dialog.