PrivateMessageLoadNewMessagesCommand.php in Private Message 8
Same filename and directory in other branches
Namespace
Drupal\private_message\AjaxFile
src/Ajax/PrivateMessageLoadNewMessagesCommand.phpView source
<?php
namespace Drupal\private_message\Ajax;
use Drupal\Core\Ajax\CommandInterface;
/**
* Ajax Command to trigger a load of new private messages into a thread.
*/
class PrivateMessageLoadNewMessagesCommand implements CommandInterface {
/**
* {@inheritdoc}
*/
public function render() {
return [
'command' => 'loadNewPrivateMessages',
];
}
}
Classes
Name | Description |
---|---|
PrivateMessageLoadNewMessagesCommand | Ajax Command to trigger a load of new private messages into a thread. |