ChartAttachmentService.php in Charts 8
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 {
private $attachmentViews;
/**
* @return $attachmentViews an array of different views.
*/
public function getAttachmentViews() {
return $this->attachmentViews;
}
/**
* @param $attachmentViews is an array of views.
*/
public function setAttachmentViews($attachmentViews) {
$this->attachmentViews = $attachmentViews;
}
}
Classes
Name | Description |
---|---|
ChartAttachmentService | Class ChartAttachmentService |