protected function CommandWithAttachedAssetsTrait::getRenderedContent in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Ajax/CommandWithAttachedAssetsTrait.php \Drupal\Core\Ajax\CommandWithAttachedAssetsTrait::getRenderedContent()
Processes the content for output.
If content is a render array, it may contain attached assets to be processed.
Return value
string|\Drupal\Component\Render\MarkupInterface HTML rendered content.
8 calls to CommandWithAttachedAssetsTrait::getRenderedContent()
- AfterCommand::render in core/
lib/ Drupal/ Core/ Ajax/ AfterCommand.php - Implements Drupal\Core\Ajax\CommandInterface:render().
- AppendCommand::render in core/
lib/ Drupal/ Core/ Ajax/ AppendCommand.php - Implements Drupal\Core\Ajax\CommandInterface:render().
- BeforeCommand::render in core/
lib/ Drupal/ Core/ Ajax/ BeforeCommand.php - Implements Drupal\Core\Ajax\CommandInterface:render().
- HtmlCommand::render in core/
lib/ Drupal/ Core/ Ajax/ HtmlCommand.php - Implements Drupal\Core\Ajax\CommandInterface:render().
- InsertCommand::render in core/
lib/ Drupal/ Core/ Ajax/ InsertCommand.php - Implements Drupal\Core\Ajax\CommandInterface:render().
File
- core/
lib/ Drupal/ Core/ Ajax/ CommandWithAttachedAssetsTrait.php, line 35 - Contains \Drupal\Core\Ajax\CommandWithAttachedAssetsTrait.
Class
- CommandWithAttachedAssetsTrait
- Trait for Ajax commands that render content and attach assets.
Namespace
Drupal\Core\AjaxCode
protected function getRenderedContent() {
$this->attachedAssets = new AttachedAssets();
if (is_array($this->content)) {
$html = \Drupal::service('renderer')
->renderRoot($this->content);
$this->attachedAssets = AttachedAssets::createFromRenderArray($this->content);
return $html;
}
else {
return $this->content;
}
}