You are here

AttachmentsTrait.php in Drupal 8

Same filename and directory in other branches
  1. 9 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

Namesort descending Description
AttachmentsTrait Provides an implementation of AttachmentsInterface.