You are here

final class UpdateHelperEvents in Update helper 8

Same name and namespace in other branches
  1. 2.x src/Events/UpdateHelperEvents.php \Drupal\update_helper\Events\UpdateHelperEvents

Update helper events.

@package Drupal\update_helper\Events

Hierarchy

Expanded class hierarchy of UpdateHelperEvents

4 files declare their use of UpdateHelperEvents
CommandGcuSubscriber.php in modules/update_helper_checklist/src/Events/CommandGcuSubscriber.php
ConfigurationUpdateSubscriber.php in modules/update_helper_checklist/src/Events/ConfigurationUpdateSubscriber.php
GenerateConfigurationUpdateCommand.php in src/Command/GenerateConfigurationUpdateCommand.php
Updater.php in src/Updater.php

File

src/Events/UpdateHelperEvents.php, line 10

Namespace

Drupal\update_helper\Events
View source
final class UpdateHelperEvents {

  /**
   * Event dispatched when command configure is executed.
   */
  const COMMAND_GCU_CONFIGURE = 'update_helper.command.gcu.configure';

  /**
   * Event dispatched when command interact is executed.
   */
  const COMMAND_GCU_INTERACT = 'update_helper.command.gcu.interact';

  /**
   * Event dispatched when command is executed.
   */
  const COMMAND_GCU_EXECUTE = 'update_helper.command.gcu.execute';

  /**
   * Event dispatched when configuration update is executed.
   */
  const CONFIGURATION_UPDATE = 'update_helper.configuration.update';

}

Members

Namesort descending Modifiers Type Description Overrides
UpdateHelperEvents::COMMAND_GCU_CONFIGURE constant Event dispatched when command configure is executed.
UpdateHelperEvents::COMMAND_GCU_EXECUTE constant Event dispatched when command is executed.
UpdateHelperEvents::COMMAND_GCU_INTERACT constant Event dispatched when command interact is executed.
UpdateHelperEvents::CONFIGURATION_UPDATE constant Event dispatched when configuration update is executed.