You are here

ConfigDevelEvents.php in Configuration development 8

File

src/Event/ConfigDevelEvents.php
View 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

Namesort descending Description
ConfigDevelEvents Defines events for config devel.