abstract class ContentBlockBase in Open Social 10.1.x
Same name and namespace in other branches
- 8.9 modules/social_features/social_content_block/src/ContentBlockBase.php \Drupal\social_content_block\ContentBlockBase
- 8.8 modules/social_features/social_content_block/src/ContentBlockBase.php \Drupal\social_content_block\ContentBlockBase
- 10.3.x modules/social_features/social_content_block/src/ContentBlockBase.php \Drupal\social_content_block\ContentBlockBase
- 10.0.x modules/social_features/social_content_block/src/ContentBlockBase.php \Drupal\social_content_block\ContentBlockBase
- 10.2.x modules/social_features/social_content_block/src/ContentBlockBase.php \Drupal\social_content_block\ContentBlockBase
Defines a base content block implementation.
This abstract class provides a method for inserting additional filters to the base query of the "Custom content list block" custom block.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\social_content_block\ContentBlockBase implements ContentBlockPluginInterface
Expanded class hierarchy of ContentBlockBase
5 files declare their use of ContentBlockBase
- BookContentBlock.php in modules/
social_features/ social_content_block/ modules/ social_book_content_block/ src/ Plugin/ ContentBlock/ BookContentBlock.php - EventContentBlock.php in modules/
social_features/ social_content_block/ modules/ social_event_content_block/ src/ Plugin/ ContentBlock/ EventContentBlock.php - GroupContentBlock.php in modules/
social_features/ social_content_block/ modules/ social_group_content_block/ src/ Plugin/ ContentBlock/ GroupContentBlock.php - PageContentBlock.php in modules/
social_features/ social_content_block/ modules/ social_page_content_block/ src/ Plugin/ ContentBlock/ PageContentBlock.php - TopicContentBlock.php in modules/
social_features/ social_content_block/ src/ Plugin/ ContentBlock/ TopicContentBlock.php
File
- modules/
social_features/ social_content_block/ src/ ContentBlockBase.php, line 15
Namespace
Drupal\social_content_blockView source
abstract class ContentBlockBase extends PluginBase implements ContentBlockPluginInterface {
/**
* {@inheritdoc}
*/
public function supportedSortOptions() : array {
return [
'created' => 'Last created',
'changed' => 'Last updated',
'most_commented' => 'Most commented',
'most_liked' => 'Most liked',
'last_interacted' => 'Last interacted',
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ContentBlockBase:: |
public | function |
The sort options that are supported for this content block type. Overrides ContentBlockPluginInterface:: |
1 |
ContentBlockPluginInterface:: |
public | function | Create filtering query. | 5 |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 98 |