AttachmentsTrait.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Render/AttachmentsTrait.php
  2. 8.9.x core/lib/Drupal/Core/Render/AttachmentsTrait.php
  3. 10 core/lib/Drupal/Core/Render/AttachmentsTrait.php

Namespace

Drupal\Core\Render

File

core/lib/Drupal/Core/Render/AttachmentsTrait.php

View source
<?php

namespace Drupal\Core\Render;


/**
 * Provides an implementation of AttachmentsInterface.
 *
 * @see \Drupal\Core\Render\AttachmentsInterface
 */
trait AttachmentsTrait {
    
    /**
     * The attachments for this response.
     *
     * @var array
     */
    protected $attachments = [];
    
    /**
     * {@inheritdoc}
     */
    public function getAttachments() {
        return $this->attachments;
    }
    
    /**
     * {@inheritdoc}
     */
    public function addAttachments(array $attachments) {
        $this->attachments = BubbleableMetadata::mergeAttachments($this->attachments, $attachments);
        return $this;
    }
    
    /**
     * {@inheritdoc}
     */
    public function setAttachments(array $attachments) {
        $this->attachments = $attachments;
        return $this;
    }

}

Traits

Title Deprecated Summary
AttachmentsTrait Provides an implementation of AttachmentsInterface.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.