You are here

FancyLoginClosePopupCommand.php in Fancy Login 8.2

Same filename and directory in other branches
  1. 3.0.x src/Ajax/FancyLoginClosePopupCommand.php

File

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

namespace Drupal\fancy_login\Ajax;

use Drupal\Core\Ajax\CommandInterface;

/**
 * Defines the popup ajax command.
 */
class FancyLoginClosePopupCommand implements CommandInterface {

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

}

Classes

Namesort descending Description
FancyLoginClosePopupCommand Defines the popup ajax command.