-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.php
More file actions
55 lines (52 loc) · 1.75 KB
/
constants.php
File metadata and controls
55 lines (52 loc) · 1.75 KB
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
<?php
declare(strict_types=1);
/**
* Список часто используемых mime типов и соответствующих им расширений файлов
*/
const MIME_MAP = [
'image/jpeg' => 'jpeg',
'image/jpg' => 'jpg',
'image/png' => 'png',
'image/gif' => 'gif',
'image/svg+xml' => 'svg',
'image/webp' => 'webp',
'image/bmp' => 'bmp',
'image/x-icon' => 'ico',
'application/pdf' => 'pdf',
'application/msword' => 'doc',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => 'docx',
'application/vnd.ms-excel' => 'xls',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => 'xlsx',
'application/vnd.ms-powerpoint' => 'ppt',
'application/vnd.openxmlformats-officedocument.presentationml.presentation' => 'pptx',
'text/plain' => 'txt',
'text/csv' => 'csv',
'application/json' => 'json',
'application/xml' => 'xml',
'audio/mpeg' => 'mp3',
'audio/ogg' => 'ogg',
'audio/wav' => 'wav',
'audio/webm' => 'weba',
'video/mp4' => 'mp4',
'video/ogg' => 'ogv',
'video/webm' => 'webm',
'video/x-msvideo' => 'avi',
'video/quicktime' => 'mov',
'application/zip' => 'zip',
'application/x-rar-compressed' => 'rar',
'application/x-7z-compressed' => '7z',
'application/x-tar' => 'tar',
'application/gzip' => 'gz',
'text/html' => 'html',
'text/css' => 'css',
'application/javascript' => 'js',
'application/x-httpd-php' => 'php',
];
/**
* Значение когда письмо было успешно отправлено
*/
const EMAIL_DELIVERY_SUCCESS = 1;
/**
* Значение когда отправка письма закончилась ошибкой
*/
const EMAIL_DELIVERY_FAILURE = 0;