class PanelizerNode in Panelizer 8.3
Same name and namespace in other branches
- 8.5 src/Plugin/PanelizerEntity/PanelizerNode.php \Drupal\panelizer\Plugin\PanelizerEntity\PanelizerNode
- 8.4 src/Plugin/PanelizerEntity/PanelizerNode.php \Drupal\panelizer\Plugin\PanelizerEntity\PanelizerNode
Panelizer entity plugin for integrating with nodes.
Plugin annotation
@PanelizerEntity("node");
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\panelizer\Plugin\PanelizerEntityBase implements ContainerFactoryPluginInterface, PanelizerEntityInterface uses StringTranslationTrait
- class \Drupal\panelizer\Plugin\PanelizerEntity\PanelizerNode
- class \Drupal\panelizer\Plugin\PanelizerEntityBase implements ContainerFactoryPluginInterface, PanelizerEntityInterface uses StringTranslationTrait
Expanded class hierarchy of PanelizerNode
File
- src/
Plugin/ PanelizerEntity/ PanelizerNode.php, line 15
Namespace
Drupal\panelizer\Plugin\PanelizerEntityView source
class PanelizerNode extends PanelizerEntityBase {
/**
* {@inheritdoc}
*/
public function getDefaultDisplay(EntityViewDisplayInterface $display, $bundle, $view_mode) {
$panels_display = parent::getDefaultDisplay($display, $bundle, $view_mode)
->setPageTitle('[node:title]');
// Remove the 'title' block because it's covered already.
foreach ($panels_display
->getRegionAssignments() as $region => $blocks) {
/** @var \Drupal\Core\Block\BlockPluginInterface[] $blocks */
foreach ($blocks as $block_id => $block) {
if ($block
->getPluginId() == 'entity_field:node:title') {
$panels_display
->removeBlock($block_id);
}
}
}
if ($display
->getComponent('links')) {
// @todo: add block for node links.
}
if ($display
->getComponent('langcode')) {
// @todo: add block for node language.
}
return $panels_display;
}
/**
* {@inheritdoc}
*/
public function alterBuild(array &$build, EntityInterface $entity, PanelsDisplayVariant $panels_display, $view_mode) {
/** @var $entity \Drupal\node\Entity\Node */
parent::alterBuild($build, $entity, $panels_display, $view_mode);
if ($entity
->id()) {
$build['#contextual_links']['node'] = [
'route_parameters' => [
'node' => $entity
->id(),
],
'metadata' => [
'changed' => $entity
->getChangedTime(),
],
];
}
}
/**
* {@inheritdoc}
*/
public function preprocessViewMode(array &$variables, EntityInterface $entity, PanelsDisplayVariant $panels_display, $view_mode) {
parent::preprocessViewMode($variables, $entity, $panels_display, $view_mode);
/** @var \Drupal\node\NodeInterface $node */
$node = $entity;
// Add node specific CSS classes.
if ($node
->isPromoted()) {
$variables['attributes']['class'][] = 'node--promoted';
}
if ($node
->isSticky()) {
$variables['attributes']['class'][] = 'node--sticky';
}
if (!$node
->isPublished()) {
$variables['attributes']['class'][] = 'node--unpublished';
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PanelizerEntityBase:: |
protected | property | ||
PanelizerEntityBase:: |
protected | property | ||
PanelizerEntityBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
PanelizerEntityBase:: |
public | function |
Overrides PluginBase:: |
|
PanelizerNode:: |
public | function |
Alter the built entity view in an entity specific way before rendering. Overrides PanelizerEntityBase:: |
|
PanelizerNode:: |
public | function |
Creates a default Panels display from the core Entity display. Overrides PanelizerEntityBase:: |
|
PanelizerNode:: |
public | function |
Preprocess the variables for the view mode template. Overrides PanelizerEntityBase:: |
|
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:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |