public AttachmentsTrait::addAttachments(array $attachments)
Adds attachments.
Parameters
array $attachments: The attachments to add.
Return value
$this
Overrides AttachmentsInterface::addAttachments
File
- core/lib/Drupal/Core/Render/AttachmentsTrait.php, line 29
Class
- AttachmentsTrait
- Provides an implementation of AttachmentsInterface.
Namespace
Drupal\Core\Render
Code
1 2 3 4 | public function addAttachments( array $attachments ) { $this ->attachments = BubbleableMetadata::mergeAttachments( $this ->attachments, $attachments ); return $this ; } |
Please login to continue.