mautic / app /bundles /ConfigBundle /ConfigEvents.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
991 Bytes
<?php
namespace Mautic\ConfigBundle;
/**
* Events available for ConfigBundle.
*/
final class ConfigEvents
{
/**
* The mautic.config_on_generate event is thrown when the configuration form is generated.
*
* The event listener receives a
* Mautic\ConfigBundle\Event\ConfigGenerateEvent instance.
*
* @var string
*/
public const CONFIG_ON_GENERATE = 'mautic.config_on_generate';
/**
* The mautic.config_pre_save event is thrown right before config data are saved.
*
* The event listener receives a Mautic\ConfigBundle\Event\ConfigEvent instance.
*
* @var string
*/
public const CONFIG_PRE_SAVE = 'mautic.config_pre_save';
/**
* The mautic.config_post_save event is thrown right after config data are saved.
*
* The event listener receives a Mautic\ConfigBundle\Event\ConfigEvent instance.
*
* @var string
*/
public const CONFIG_POST_SAVE = 'mautic.config_post_save';
}