-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetadata.php
58 lines (56 loc) · 1.79 KB
/
metadata.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
<?php
$sMetadataVersion = '2.1';
$aModule = [
'id' => 'oxpssentry',
'title' => 'OXPS :: sentry integration',
'description' => [
'de' => 'Sentry Schnittstelle für OXID',
'en' => 'sentry integration for OXID',
],
'thumbnail' => 'out/pictures/oxpssentry.png',
'version' => '1.0.3',
'author' => 'OXID Professional Services',
'url' => 'http://www.oxid-esales.com',
'email' => 'info@oxid-esales.com',
'extend' => [
\OxidEsales\Eshop\Core\ShopControl::class
=> \OxidProfessionalServices\Sentry\Core\ShopControl::class,
\OxidEsales\Eshop\Core\WidgetControl::class
=> \OxidProfessionalServices\Sentry\Core\WidgetControl::class,
\OxidEsales\Eshop\Core\Exception\ExceptionHandler::class
=> \OxidProfessionalServices\Sentry\Core\ExceptionHandler::class,
],
'settings' => [
[
'group' => 'main',
'name' => 'oxpsSentryEnvirnoment',
'type' => 'str',
'value' => ''
],
[
'group' => 'main',
'name' => 'oxpsSentryProxy',
'type' => 'str',
'value' => null
],
[
'group' => 'main',
'name' => 'oxpsSentryPhpUrl',
'type' => 'str',
'value' => ''
],
[
'group' => 'main',
'name' => 'oxpsSentryJsUrl',
'type' => 'str',
'value' => ''
],
[
'group' => 'main',
'name' => 'oxpsSentryLogLevel',
'type' => 'select',
'value' => 'none',
'constraints' => 'none|emergency|alert|critical|error|warning|notice|info|debug',
],
],
];