ReloadCommand.php in Flexiform 8
Namespace
Drupal\flexiform\AjaxFile
src/Ajax/ReloadCommand.phpView source
<?php
namespace Drupal\flexiform\Ajax;
use Drupal\Core\Ajax\CommandInterface;
/**
* Provides the reload AJAX command.
*/
class ReloadCommand implements CommandInterface {
/**
* {@inheritdoc}
*/
public function render() {
return [
'command' => 'reload',
];
}
}
Classes
Name | Description |
---|---|
ReloadCommand | Provides the reload AJAX command. |