You are here

public function SetSubtreesCommand::render in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/toolbar/src/Ajax/SetSubtreesCommand.php \Drupal\toolbar\Ajax\SetSubtreesCommand::render()
  2. 9 core/modules/toolbar/src/Ajax/SetSubtreesCommand.php \Drupal\toolbar\Ajax\SetSubtreesCommand::render()

Return an array to be run through json_encode and sent to the client.

Overrides CommandInterface::render

File

core/modules/toolbar/src/Ajax/SetSubtreesCommand.php, line 32

Class

SetSubtreesCommand
Defines an AJAX command that sets the toolbar subtrees.

Namespace

Drupal\toolbar\Ajax

Code

public function render() {
  return [
    'command' => 'setToolbarSubtrees',
    'subtrees' => array_map('strval', $this->subtrees),
  ];
}