You are here

PrivateMessageInboxTriggerUpdateCommand.php in Private Message 8

Same filename and directory in other branches
  1. 8.2 src/Ajax/PrivateMessageInboxTriggerUpdateCommand.php

File

src/Ajax/PrivateMessageInboxTriggerUpdateCommand.php
View 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

Namesort descending Description
PrivateMessageInboxTriggerUpdateCommand Ajax command to trigger an update of the private message inbox block.