ViewsDisplay::$no_ui

Whether the plugin should be not selectable in the UI. If it's set to TRUE, you can still use it via the API in config files. Type: bool File core/modules/views/src/Annotation/ViewsDisplay.php, line 125 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $no_ui;

ViewsDisplay::$theme

The theme function used to render the display's output. File core/modules/views/src/Annotation/ViewsDisplay.php, line 116 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $theme;

ViewsDisplay::$short_title

(optional) The short title used in the views UI. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/views/src/Annotation/ViewsDisplay.php, line 39 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $short_title = '';

ViewsDisplay::$uses_hook_block

Does the display plugin provide blocks. Type: bool File core/modules/views/src/Annotation/ViewsDisplay.php, line 81 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $uses_hook_block;

ViewsDisplay::$base

The base tables on which this display plugin can be used. If no base table is specified the plugin can be used with all tables. Type: array File core/modules/views/src/Annotation/ViewsDisplay.php, line 109 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $base;

ViewsDisplay::$contextual_links_locations

A list of places where contextual links should be added. For example: array( 'page', 'block', ) If you don't specify it there will be contextual links rendered for all displays of a view. If this is not set or regions have been specified, views will display an option to 'hide contextual links'. Use an empty array to disable. Type: array File core/modules/views/src/Annotation/ViewsDisplay.php, line 100 Class ViewsDisplay Defines a Plugin annotation object for views display plugins.

ViewsDisplay::$id

The plugin ID. Type: string File core/modules/views/src/Annotation/ViewsDisplay.php, line 21 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $id;

ViewsDisplay::$admin

The administrative name of the display. The name is displayed on the Views overview and also used as default name for new displays. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/views/src/Annotation/ViewsDisplay.php, line 51 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $admin = '';

ViewsDisplay::$help

A short help string; this is displayed in the views UI. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/views/src/Annotation/ViewsDisplay.php, line 60 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $help = '';

ViewsDisplay

Defines a Plugin annotation object for views display plugins. Hierarchy class \Drupal\Component\Annotation\Plugin implements AnnotationInterfaceclass \Drupal\views\Annotation\ViewsPluginAnnotationBase implements AnnotationInterfaceclass \Drupal\views\Annotation\ViewsDisplay See also \Drupal\views\Plugin\views\display\DisplayPluginBase Related topics Annotations Annotations for class discovery and metadata description. Views display plugins Plugins to handle the overall display of views.