You are here

public function DisplayPluginBase::usesAttachments in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/display/DisplayPluginBase.php \Drupal\views\Plugin\views\display\DisplayPluginBase::usesAttachments()

Returns whether the display can use attachments.

Return value

bool

Overrides DisplayPluginInterface::usesAttachments

2 calls to DisplayPluginBase::usesAttachments()
DisplayPluginBase::acceptAttachments in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Determines whether this display can use attachments.
DisplayPluginBase::optionsSummary in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Provides the default summary for options in the views UI.

File

core/modules/views/src/Plugin/views/display/DisplayPluginBase.php, line 384

Class

DisplayPluginBase
Base class for views display plugins.

Namespace

Drupal\views\Plugin\views\display

Code

public function usesAttachments() {
  return $this->usesAttachments;
}