Keys
1 year ago
Types
1 year ago
Alert.php
1 year ago
Format.php
1 year ago
PostValue.php
2 years ago
SubPage.php
2 years ago
UserPermission.php
2 years ago
Format.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace FapiMember\Model\Enums; |
| 4 | |
| 5 | use FapiMember\Library\SmartEmailing\Types\Enum; |
| 6 | |
| 7 | class Format extends Enum |
| 8 | { |
| 9 | const DATE_TIME = 'Y-m-d\TH:i:s'; |
| 10 | |
| 11 | const DATE_TIME_MINUTES = 'Y-m-d\TH:i'; |
| 12 | |
| 13 | const DATE = 'Y-m-d'; |
| 14 | |
| 15 | const DATE_CZECH = 'd.m.Y'; |
| 16 | |
| 17 | const DATE_TIME_BASIC = 'Y-m-d H:i:s'; |
| 18 | |
| 19 | } |
| 20 |