ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
mimemap.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21// often used content types taken from "apache/conf/mime.types"
22
26$mimetypes = array(
27 'avi' => 'video/x-msvideo',
28 'bmp' => 'image/bmp',
29 'class' => 'application/octet-stream',
30 'css' => 'text/css',
31 'dcr' => 'application/x-director',
32 'doc' => 'application/msword',
33 'dtd' => 'application/xml-dtd',
34 'gif' => 'image/gif',
35 'htm' => 'text/html',
36 'html' => 'text/html',
37 'ico' => 'image/x-icon',
38 'jpeg' => 'image/jpeg',
39 'jpg' => 'image/jpeg',
40 'js' => 'application/x-javascript',
41 'mov' => 'video/quicktime',
42 'mp3' => 'audio/mpeg',
43 'mpeg' => 'video/mpeg',
44 'mpg' => 'video/mpeg',
45 'ogg' => 'application/ogg',
46 'pdb' => 'chemical/x-pdb',
47 'pdf' => 'application/pdf',
48 'png' => 'image/png',
49 'ppt' => 'application/vnd.ms-powerpoint',
50 'ps' => 'application/postscript',
51 'qt' => 'video/quicktime',
52 'ra' => 'audio/x-pn-realaudio',
53 'ram' => 'audio/x-pn-realaudio',
54 'rdf' => 'application/rdf+xml',
55 'rm' => 'application/vnd.rn-realmedia',
56 'rtf' => 'text/rtf',
57 'smi' => 'application/smil',
58 'smil' => 'application/smil',
59 'svg' => 'image/svg+xml',
60 'swf' => 'application/x-shockwave-flash',
61 'txt' => 'text/plain',
62 'vrml' => 'model/vrml',
63 'wav' => 'audio/x-wav',
64 'wrl' => 'model/vrml',
65 'xhtml' => 'application/xhtml+xml',
66 'xls' => 'application/vnd.ms-excel',
67 'xml' => 'application/xml',
68 'xsl' => 'application/xml',
69 'xslt' => 'application/xslt+xml',
70 'xul' => 'application/vnd.mozilla.xul+xml',
71 'zip' => 'application/zip'
72);
$mimetypes
Definition: mimemap.php:26