1
+ <?php
2
+ declare (strict_types=1 );
3
+ namespace In2code \Powermail \Enumeration ;
4
+
5
+ /**
6
+ * This file is part of the TYPO3 CMS project.
7
+ *
8
+ * It is free software; you can redistribute it and/or modify it under
9
+ * the terms of the GNU General Public License, either version 2
10
+ * of the License, or any later version.
11
+ *
12
+ * For the full copyright and license information, please read the
13
+ * LICENSE.txt file that was distributed with this source code.
14
+ *
15
+ * The TYPO3 project - inspiring people to share!
16
+ */
17
+
18
+ use TYPO3 \CMS \Core \Type \Enumeration ;
19
+
20
+ class AutocompleteType extends Enumeration
21
+ {
22
+
23
+ const ON = 'on ' ;
24
+ const OFF = 'off ' ;
25
+ const NAME = 'name ' ;
26
+ const HONORIFIC_PREFIX = 'honorific-prefix ' ;
27
+ const GIVEN_NAME = 'given-name ' ;
28
+ const ADDITIONAL_NAME = 'additional-name ' ;
29
+ const FAMILY_NAME = 'family-name ' ;
30
+ const HONORIFIC_SUFFIX = 'honorific-suffix ' ;
31
+ const NICKNAME = 'nickname ' ;
32
+ const USERNAME = 'username ' ;
33
+ const NEW_PASSWORD = 'new-password ' ;
34
+ const CURRENT_PASSWORD = 'current-password ' ;
35
+ const ORGANIZATION_TITLE = 'organization-title ' ;
36
+ const ORGANIZATION = 'organization ' ;
37
+ const STREET_ADDRESS = 'street-address ' ;
38
+ const ADDRESS_LINE1 = 'address-line1 ' ;
39
+ const ADDRESS_LINE2 = 'address-line2 ' ;
40
+ const ADDRESS_LINE3 = 'address-line3 ' ;
41
+ const ADDRESS_LEVEL4 = 'address-level4 ' ;
42
+ const ADDRESS_LEVEL3 = 'address-level3 ' ;
43
+ const ADDRESS_LEVEL2 = 'address-level2 ' ;
44
+ const ADDRESS_LEVEL1 = 'address-level1 ' ;
45
+ const COUNTRY = 'country ' ;
46
+ const COUNTRY_NAME = 'country-name ' ;
47
+ const POSTAL_CODE = 'postal-code ' ;
48
+ const CC_NAME = 'cc-name ' ;
49
+ const CC_GIVEN_NAME = 'cc-given-name ' ;
50
+ const CC_ADDITIONAL_NAME = 'cc-additional-name ' ;
51
+ const CC_FAMILY_NAME = 'cc-family-name ' ;
52
+ const CC_NUMBER = 'cc-number ' ;
53
+ const CC_EXP = 'cc-exp ' ;
54
+ const CC_EXP_MONTH = 'cc-exp-month ' ;
55
+ const CC_EXP_YEAR = 'cc-exp-year ' ;
56
+ const CC_CSC = 'cc-csc ' ;
57
+ const CC_TYPE = 'cc-type ' ;
58
+ const TRANSACTION_CURRENCY = 'transaction-currency ' ;
59
+ const TRANSACTION_AMOUNT = 'transaction-amount ' ;
60
+ const LANGUAGE = 'language ' ;
61
+ const BDAY = 'bday ' ;
62
+ const BDAY_DAY = 'bday-day ' ;
63
+ const BDAY_MONTH = 'bday-month ' ;
64
+ const BDAY_YEAR = 'bday-year ' ;
65
+ const SEX = 'sex ' ;
66
+ const URL = 'url ' ;
67
+ const PHOTO = 'photo ' ;
68
+ const TEL = 'tel ' ;
69
+ const TEL_COUNTRY_CODE = 'tel-country-code ' ;
70
+ const TEL_NATIONAL = 'tel-national ' ;
71
+ const TEL_AREA_CODE = 'tel-area-code ' ;
72
+ const TEL_LOCAL = 'tel-local ' ;
73
+ const TEL_LOCAL_PREFIX = 'tel-local-prefix ' ;
74
+ const TEL_LOCAL_SUFFIX = 'tel-local-suffix ' ;
75
+ const TEL_EXTENSION = 'tel-extension ' ;
76
+ const EMAIL = 'email ' ;
77
+ const IMPP = 'impp ' ;
78
+
79
+ }
0 commit comments