PrivateMessageInboxTriggerUpdateCommand.php in Private Message 8.2
Same filename and directory in other branches
Namespace
Drupal\private_message\AjaxFile
src/Ajax/PrivateMessageInboxTriggerUpdateCommand.phpView source
<?php
namespace Drupal\private_message\Ajax;
use Drupal\Core\Ajax\CommandInterface;
/**
* Ajax command to trigger an update of the private message inbox block.
*/
class PrivateMessageInboxTriggerUpdateCommand implements CommandInterface {
/**
* {@inheritdoc}
*/
public function render() {
return [
'command' => 'privateMessageTriggerInboxUpdate',
];
}
}
Classes
Name | Description |
---|---|
PrivateMessageInboxTriggerUpdateCommand | Ajax command to trigger an update of the private message inbox block. |