PrivateMessageInsertMessagesCommand.php in Private Message 8
Same filename and directory in other branches
Namespace
Drupal\private_message\AjaxFile
src/Ajax/PrivateMessageInsertMessagesCommand.phpView source
<?php
namespace Drupal\private_message\Ajax;
use Drupal\Core\Ajax\CommandInterface;
/**
* Base class for Ajax command to insert messages into a private message thread.
*/
abstract class PrivateMessageInsertMessagesCommand implements CommandInterface {
/**
* The type of messages to be inserted in the page.
*
* Possible values:
* - new
* - previous.
*
* @var string
*/
protected $insertType;
/**
* The HTML for the messages to be inserted in the page.
*
* @var string
*/
protected $messages;
/**
* Construct a PrivateMessageInsertMessagesCommand object.
*
* @param string $insertType
* The type of messages to be inserted in the page. Possible values:
* - new
* - previous.
* @param string $messages
* The HTML for the messages to be inserted in the page.
*/
public function __construct($insertType, $messages) {
$this->insertType = $insertType;
$this->messages = $messages;
}
/**
* {@inheritdoc}
*/
public function render() {
return [
'command' => 'insertPrivateMessages',
'insertType' => $this->insertType,
'messages' => $this->messages,
];
}
}
Classes
Name | Description |
---|---|
PrivateMessageInsertMessagesCommand | Base class for Ajax command to insert messages into a private message thread. |