summaryrefslogtreecommitdiffstatshomepage
path: root/core/lib/Drupal/Core/Site/MaintenanceModeEvents.php
blob: 2348fd54d7ad12e00365544112a0734e413377ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace Drupal\Core\Site;

/**
 * Defines events for maintenance mode.
 */
final class MaintenanceModeEvents {

  /**
   * The name of the event fired when request is made in maintenance more.
   */
  const MAINTENANCE_MODE_REQUEST = 'site.maintenance_mode_request';

}