ChartAttachmentServiceInterface.php in Charts 5.0.x
Same filename and directory in other branches
Namespace
Drupal\charts\ServicesFile
src/Services/ChartAttachmentServiceInterface.phpView source
<?php
namespace Drupal\charts\Services;
/**
* Defines an interface for Chart attachment service classes.
*/
interface ChartAttachmentServiceInterface {
/**
* Get Attachment Views.
*
* @return array
* Different views.
*/
public function getAttachmentViews();
/**
* Set Attachment Views.
*
* @param array $attachmentViews
* Attach an array of views.
*/
public function setAttachmentViews(array $attachmentViews = []);
}
Interfaces
Name | Description |
---|---|
ChartAttachmentServiceInterface | Defines an interface for Chart attachment service classes. |