ConfigDevelEvents.php in Configuration development 8
Namespace
Drupal\config_devel\EventFile
src/Event/ConfigDevelEvents.phpView source
<?php
namespace Drupal\config_devel\Event;
/**
* Defines events for config devel.
*
* @see \Drupal\config_devel\Event\ConfigDevelSaveEvent
*/
final class ConfigDevelEvents {
/**
* Name of the event fired when saving a config entity to disk.
*
* This event allows other modules to impact the configuration that is being
* written to disk
*
* @Event
*
* @see \Drupal\config_devel\Event\ConfigDevelSaveEvent
*
* @var string
*/
const SAVE = 'config_devel.save';
}
Classes
Name | Description |
---|---|
ConfigDevelEvents | Defines events for config devel. |