-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathConfigEvents.php
80 lines (71 loc) · 2.92 KB
/
ConfigEvents.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
declare(strict_types=1);
/*
* This file is part of the Bartacus project, which integrates Symfony into TYPO3.
*
* Copyright (c) Emily Karisch
*
* The BartacusBundle is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The BartacusBundle is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the BartacusBundle. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Bartacus\Bundle\BartacusBundle;
/**
* Contains all events thrown in the config loader.
*/
final class ConfigEvents
{
/**
* The ADDITIONAL_CONFIGURATION event occurs at the very beginning
* when the AdditionalConfiguration.php is parsed.
*
* Useful to modify the $GLOBALS['TYPO3_CONF_VARS'] or load TypoScript.
*
* @Event("Symfony\Component\EventDispatcher\Event")
*/
public const string ADDITIONAL_CONFIGURATION = 'bartacus.config.additional_configuration';
/**
* The REQUEST_MIDDLEWARES event occurs at when the request middlewares
* of the app extension are loaded.
*
* @Event("Bartacus\Bundle\BartacusBundle\Event\RequestMiddlewaresEvent")
*/
public const string REQUEST_MIDDLEWARES = 'bartacus.config.request_middlewares';
/**
* The EXTENSION_TABLES event occurs at when the extension tables file
* of the app extension are loaded.
*
* @Event("Bartacus\Bundle\BartacusBundle\Event\ExtensionTablesLoadEvent")
*/
public const string EXTENSION_TABLES = 'bartacus.config.ext_tables';
/**
* The EXTENSION_LOCALCONF event occurs at when the request extension localconf file
* of the app extension are loaded.
*
* @Event("Bartacus\Bundle\BartacusBundle\Event\ExtensionTablesLoadEvent")
*/
public const string EXTENSION_LOCAL_CONF = 'bartacus.config.ext_localconf';
/**
* The REQUEST_EXTBASE_PERSISTENCE_CLASSES event occurs at when the request the extbase persistence classes
* of the app extension are loaded.
*
* @Event("Bartacus\Bundle\BartacusBundle\Event\RequestExtbasePersistenceClassesEvent")
*/
public const string REQUEST_EXTBASE_PERSISTENCE_CLASSES = 'bartacus.config.request_extbase_persistence_classes';
/**
* The EXTBASE_PERSISTENCE_CLASSES event occurs at when the request the extbase persistence classes
* of the app extension are loaded.
*
* @Event("Bartacus\Bundle\BartacusBundle\Event\ExtbasePersistenceClassesEvent")
*/
public const string EXTBASE_PERSISTENCE_CLASSES = 'bartacus.config.extbase_persistence_classes';
}