
| 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/UnformattedSummary.php |
<?php
namespace Drupal\views\Plugin\views\style;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\views\Attribute\ViewsStyle;
/**
* The default style plugin for summaries.
*
* @ingroup views_style_plugins
*/
#[ViewsStyle(
id: "unformatted_summary",
title: new TranslatableMarkup("Unformatted"),
help: new TranslatableMarkup("Displays the summary unformatted, with option for one after another or inline."),
theme: "views_view_summary_unformatted",
display_types: ["summary"],
)]
class UnformattedSummary extends DefaultSummary {
protected function defineOptions() {
$options = parent::defineOptions();
$options['inline'] = ['default' => FALSE];
$options['separator'] = ['default' => ''];
return $options;
}
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['inline'] = [
'#type' => 'checkbox',
'#default_value' => !empty($this->options['inline']),
'#title' => $this->t('Display items inline'),
];
$form['separator'] = [
'#type' => 'textfield',
'#title' => $this->t('Separator'),
'#default_value' => $this->options['separator'],
];
}
}