Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / views / tests / modules / views_test_data / src / Plugin / views / display / DisplayNoAreaTest.php
1 <?php
2
3 namespace Drupal\views_test_data\Plugin\views\display;
4
5 /**
6  * Defines a Display test plugin with areas disabled.
7  *
8  * @ViewsDisplay(
9  *   id = "display_no_area_test",
10  *   title = @Translation("Display test no area"),
11  *   help = @Translation("Defines a display test with areas disabled."),
12  *   theme = "views_view",
13  *   register_theme = FALSE,
14  *   contextual_links_locations = {"view"}
15  * )
16  */
17 class DisplayNoAreaTest extends DisplayTest {
18
19   /**
20    * Whether the display allows area plugins.
21    *
22    * @var bool
23    *   TRUE if the display can use areas, or FALSE otherwise.
24    */
25   protected $usesAreas = FALSE;
26
27 }