class FancyLoginClosePopupCommand in Fancy Login 3.0.x
Same name and namespace in other branches
- 8.2 src/Ajax/FancyLoginClosePopupCommand.php \Drupal\fancy_login\Ajax\FancyLoginClosePopupCommand
Defines the popup ajax command.
Hierarchy
- class \Drupal\fancy_login\Ajax\FancyLoginClosePopupCommand implements CommandInterface
Expanded class hierarchy of FancyLoginClosePopupCommand
1 file declares its use of FancyLoginClosePopupCommand
- fancy_login.module in ./
fancy_login.module - Holds hooks for the Fancy Login module.
File
- src/
Ajax/ FancyLoginClosePopupCommand.php, line 10
Namespace
Drupal\fancy_login\AjaxView source
class FancyLoginClosePopupCommand implements CommandInterface {
/**
* {@inheritdoc}
*/
public function render() {
return [
'command' => 'fancyLoginClosePopup',
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FancyLoginClosePopupCommand:: |
public | function |
Return an array to be run through json_encode and sent to the client. Overrides CommandInterface:: |