
| Current Path : /var/www/html1/testsite/web/core/modules/views/src/Plugin/views/style/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/testsite/web/core/modules/views/src/Plugin/views/style/DefaultStyle.php |
<?php
namespace Drupal\views\Plugin\views\style;
/**
* Unformatted style plugin to render rows one after another with no
* decorations.
*
* @ingroup views_style_plugins
*
* @ViewsStyle(
* id = "default",
* title = @Translation("Unformatted list"),
* help = @Translation("Displays rows one after another."),
* theme = "views_view_unformatted",
* display_types = {"normal"}
* )
*/
class DefaultStyle extends StylePluginBase {
/**
* {@inheritdoc}
*/
protected $usesRowPlugin = TRUE;
/**
* Does the style plugin support custom css class for the rows.
*
* @var bool
*/
protected $usesRowClass = TRUE;
}