You are here

class GeysirReattachBehaviors in Geysir 8

Defines an AJAX command that closes the current active dialog.

Hierarchy

Expanded class hierarchy of GeysirReattachBehaviors

3 files declare their use of GeysirReattachBehaviors
GeysirCutPasteController.php in src/Controller/GeysirCutPasteController.php
GeysirModalParagraphDeleteForm.php in src/Form/GeysirModalParagraphDeleteForm.php
GeysirModalParagraphForm.php in src/Form/GeysirModalParagraphForm.php

File

src/Ajax/GeysirReattachBehaviors.php, line 12

Namespace

Drupal\geysir\Ajax
View source
class GeysirReattachBehaviors implements CommandInterface {

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

}

Members

Namesort descending Modifiers Type Description Overrides
GeysirReattachBehaviors::render public function Return an array to be run through json_encode and sent to the client. Overrides CommandInterface::render