lb_everywhere-8.x-1.x-dev/src/Ajax/ExitLayoutModeCommand.php
src/Ajax/ExitLayoutModeCommand.php
<?php
namespace Drupal\lb_everywhere\Ajax;
use Drupal\Core\Ajax\CommandInterface;
/**
* Defines an AJAX command that exits layout mode.
*
* @ingroup ajax
*/
class ExitLayoutModeCommand implements CommandInterface {
/**
* {@inheritdoc}
*/
public function render() {
return [
'command' => 'exitLayoutMode',
];
}
}
