You are here

function views_plugin_display::accept_attachments in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_display.inc \views_plugin_display::accept_attachments()
  2. 7.3 plugins/views_plugin_display.inc \views_plugin_display::accept_attachments()

Can this display accept attachments?

File

plugins/views_plugin_display.inc, line 161
Contains the base display plugin.

Class

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

Code

function accept_attachments() {
  return !empty($this->definition['accept attachments']);
}