
| Current Path : /var/www/html/strat/web/modules/contrib/entity_export_csv/src/Event/ |
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/strat/web/modules/contrib/entity_export_csv/src/Event/EntityExportCsvEvents.php |
<?php
namespace Drupal\entity_export_csv\Event;
/**
* Define the event names for entity export csv.
*/
final class EntityExportCsvEvents {
/**
* Name of the event fired before returning the fields supported.
*
* Per entity type and/or bundle.
*
* @Event
*
* @see \Drupal\entity_export_csv\Event\EntityExportCsvFieldsSupportedEvent
*/
const ENTITY_EXPORT_CSV_FIELDS_SUPPORTED = 'entity_export_csv.fields_supported';
/**
* Name of the event fired before returning the fields enabled.
*
* Per entity type and/or bundle.
*
* @Event
*
* @see \Drupal\entity_export_csv\Event\EntityExportCsvFieldsEnabledEvent
*/
const ENTITY_EXPORT_CSV_FIELDS_ENABLE = 'entity_export_csv.fields_enable';
}