
| Current Path : /var/www/html/store/web/modules/contrib/commerce/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/store/web/modules/contrib/commerce/src/Event/CommerceEvents.php |
<?php
namespace Drupal\commerce\Event;
/**
* Defines events for the base Commerce module.
*
* Note that submodules have their own defined events.
*/
final class CommerceEvents {
/**
* Name of the event fired when filtering available conditions.
*
* @Event
*
* @see \Drupal\commerce\Event\FilterConditionsEvent
*/
const FILTER_CONDITIONS = 'commerce.filter_conditions';
/**
* Name of the event fired when altering the referenceable plugin types.
*
* @Event
*
* @see \Drupal\commerce\Event\ReferenceablePluginTypesEvent.php
*/
const REFERENCEABLE_PLUGIN_TYPES = 'commerce.referenceable_plugin_types';
/**
* Name of the event fired after sending an email via the mail handler.
*
* @Event
*
* @see \Drupal\commerce\Event\PostMailSendEvent.php
*/
const POST_MAIL_SEND = 'commerce.post_mail_send';
}