You are here

final class EntityExportCsvEvents in Entity Export CSV 8

Define the event names for entity export csv.

Hierarchy

Expanded class hierarchy of EntityExportCsvEvents

1 file declares its use of EntityExportCsvEvents
EntityExportCsvManager.php in src/EntityExportCsvManager.php

File

src/Event/EntityExportCsvEvents.php, line 8

Namespace

Drupal\entity_export_csv\Event
View source
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';

}

Members

Namesort descending Modifiers Type Description Overrides
EntityExportCsvEvents::ENTITY_EXPORT_CSV_FIELDS_ENABLE constant Name of the event fired before returning the fields enabled.
EntityExportCsvEvents::ENTITY_EXPORT_CSV_FIELDS_SUPPORTED constant Name of the event fired before returning the fields supported.