<?php/**
* @file
* Definition of Drupal\views_test_data\Plugin\views\display\DisplayNoAreaTest.
*/namespaceDrupal\views_test_data\Plugin\views\display;
useDrupal\Component\Annotation\Plugin;
useDrupal\Core\Annotation\Translation;
/**
* Defines a Display test plugin with areas disabled.
*
* @Plugin(
* id = "display_no_area_test",
* title = @Translation("Display test no area"),
* theme = "views_view",
* contextual_links_locations = {"view"}
* )
*/class DisplayNoAreaTestextends DisplayTest {
/**
* Whether the display allows area plugins.
*
* @var bool
* TRUE if the display can use areas, or FALSE otherwise.
*/
protected $usesAreas = FALSE;
}