FancyLoginClosePopupCommand.php in Fancy Login 8.2
Same filename and directory in other branches
Namespace
Drupal\fancy_login\AjaxFile
src/Ajax/FancyLoginClosePopupCommand.phpView 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
Name | Description |
---|---|
FancyLoginClosePopupCommand | Defines the popup ajax command. |