interface ChartAttachmentServiceInterface in Charts 8.3
Same name and namespace in other branches
- 8.4 src/Services/ChartAttachmentServiceInterface.php \Drupal\charts\Services\ChartAttachmentServiceInterface
- 8 src/Services/ChartAttachmentServiceInterface.php \Drupal\charts\Services\ChartAttachmentServiceInterface
- 5.0.x src/Services/ChartAttachmentServiceInterface.php \Drupal\charts\Services\ChartAttachmentServiceInterface
Defines an interface for Chart attachment service classes.
Hierarchy
- interface \Drupal\charts\Services\ChartAttachmentServiceInterface
Expanded class hierarchy of ChartAttachmentServiceInterface
All classes that implement ChartAttachmentServiceInterface
1 file declares its use of ChartAttachmentServiceInterface
- ChartsPluginStyleChart.php in src/
Plugin/ views/ style/ ChartsPluginStyleChart.php
File
- src/
Services/ ChartAttachmentServiceInterface.php, line 8
Namespace
Drupal\charts\ServicesView source
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 = []);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ChartAttachmentServiceInterface:: |
public | function | Get Attachment Views. | 1 |
ChartAttachmentServiceInterface:: |
public | function | Set Attachment Views. | 1 |