Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / views / src / Plugin / views / style / DefaultStyle.php
1 <?php
2
3 namespace Drupal\views\Plugin\views\style;
4
5 /**
6  * Unformatted style plugin to render rows one after another with no
7  * decorations.
8  *
9  * @ingroup views_style_plugins
10  *
11  * @ViewsStyle(
12  *   id = "default",
13  *   title = @Translation("Unformatted list"),
14  *   help = @Translation("Displays rows one after another."),
15  *   theme = "views_view_unformatted",
16  *   display_types = {"normal"}
17  * )
18  */
19 class DefaultStyle extends StylePluginBase {
20
21   /**
22    * {@inheritdoc}
23    */
24   protected $usesRowPlugin = TRUE;
25
26   /**
27    * Does the style plugin support custom css class for the rows.
28    *
29    * @var bool
30    */
31   protected $usesRowClass = TRUE;
32
33 }