
| Current Path : /var/www/html/12park/web/modules/contrib/webform/src/ |
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/12park/web/modules/contrib/webform/src/WebformEntityViewsData.php |
<?php
namespace Drupal\webform;
use Drupal\views\EntityViewsData;
/**
* Provides the views data for the webform entity type.
*/
class WebformEntityViewsData extends EntityViewsData {
/**
* {@inheritdoc}
*/
public function getViewsData() {
$data = parent::getViewsData();
$data['webform']['webform_bulk_form'] = [
'title' => $this->t('Webform operations bulk form'),
'help' => $this->t('Add a form element that lets you run operations on multiple webform.'),
'field' => [
'id' => 'webform_bulk_form',
],
];
return $data;
}
}