You are here

ChartAttachmentService.php in Charts 5.0.x

File

src/Services/ChartAttachmentService.php
View source
<?php

namespace Drupal\charts\Services;


/**
 * Class ChartAttachmentService.
 *
 * @package Drupal\charts\Services.
 */
class ChartAttachmentService implements ChartAttachmentServiceInterface {

  /**
   * The view attachment.
   *
   * @var array
   */
  private $attachmentViews;

  /**
   * {@inheritdoc}
   */
  public function getAttachmentViews() {
    return $this->attachmentViews;
  }

  /**
   * {@inheritdoc}
   */
  public function setAttachmentViews(array $attachmentViews = []) {
    $this->attachmentViews = $attachmentViews;
  }

}

Classes

Namesort descending Description
ChartAttachmentService Class ChartAttachmentService.