public function PrivateMessageMembersAutocompleteResponseCommand::render in Private Message 8
Same name and namespace in other branches
- 8.2 src/Ajax/PrivateMessageMembersAutocompleteResponseCommand.php \Drupal\private_message\Ajax\PrivateMessageMembersAutocompleteResponseCommand::render()
Return an array to be run through json_encode and sent to the client.
Overrides CommandInterface::render
File
- src/
Ajax/ PrivateMessageMembersAutocompleteResponseCommand.php, line 48
Class
- PrivateMessageMembersAutocompleteResponseCommand
- Ajax command to return autocomplete member results to the browser.
Namespace
Drupal\private_message\AjaxCode
public function render() {
return [
'command' => 'privateMessageMembersAutocompleteResponse',
'string' => $this->string,
'userInfo' => $this->userInfo,
];
}