public function DisplayPluginBase::usesAttachments

Returns whether the display can use attachments.

Return value

bool

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

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php, line 368
Contains Drupal\views\Plugin\views\display\DisplayPluginBase.

Class

DisplayPluginBase
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Namespace

Drupal\views\Plugin\views\display

Code

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