
| Current Path : /var/www/html/rocksensor1/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/html/rocksensor1/web/core/modules/views/src/Plugin/views/style/DefaultStyle.php |
<?php
namespace Drupal\views\Plugin\views\style;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\views\Attribute\ViewsStyle;
/**
* Unformatted style plugin to render rows.
*
* Row are rendered one after another with no decorations.
*
* @ingroup views_style_plugins
*/
#[ViewsStyle(
id: "default",
title: new TranslatableMarkup("Unformatted list"),
help: new TranslatableMarkup("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;
}