ConfigDistroEvents.php in Config Distro 8
Namespace
Drupal\config_distro\EventFile
src/Event/ConfigDistroEvents.phpView source
<?php
namespace Drupal\config_distro\Event;
/**
* Defines the events for Default Content.
*
* @see \Drupal\config_distro\Event\ImportEvent
*/
final class ConfigDistroEvents {
/**
* Name of the event fired when finishing import of distribution config.
*
* This event allows modules to perform actions after the configuration has
* been imported.
*
* @Event
*
* @var string
*/
const IMPORT = 'config_distro.import';
/**
* Name of the event fired when active storage is transformed.
*
* This event allows modules to perform transformation actions on active storage.
*
* @Event
*
* @see \Drupal\config_distro\Event\DistroStorageTransformEvent
*
* @var string
*/
const TRANSFORM = 'config_distro.transform';
}
Classes
Name | Description |
---|---|
ConfigDistroEvents | Defines the events for Default Content. |