ChartAttachmentService.php in Charts 8.4
Same filename and directory in other branches
Namespace
Drupal\charts\ServicesFile
src/Services/ChartAttachmentService.phpView 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
Name | Description |
---|---|
ChartAttachmentService | Class ChartAttachmentService. |