Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / views / tests / modules / views_test_data / src / Plugin / views / style / StyleTemplateTest.php
1 <?php
2
3 namespace Drupal\views_test_data\Plugin\views\style;
4
5 use Drupal\views\Plugin\views\style\StylePluginBase;
6
7 /**
8  * Provides a general test style template plugin.
9  *
10  * @ingroup views_style_plugins
11  *
12  * @ViewsStyle(
13  *   id = "test_template_style",
14  *   title = @Translation("Test style template plugin"),
15  *   help = @Translation("Provides a generic style template test plugin."),
16  *   theme = "views_view_style_template_test",
17  *   display_types = {"normal", "test"}
18  * )
19  */
20 class StyleTemplateTest extends StylePluginBase {
21
22   /**
23    * {@inheritdoc}
24    */
25   protected $usesRowPlugin = TRUE;
26
27 }