ILIAS  release_8 Revision v8.25
mimemap.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5// often used content types taken from "apache/conf/mime.types"
6
10$mimetypes = array(
11 'avi' => 'video/x-msvideo',
12 'bmp' => 'image/bmp',
13 'class' => 'application/octet-stream',
14 'css' => 'text/css',
15 'dcr' => 'application/x-director',
16 'doc' => 'application/msword',
17 'dtd' => 'application/xml-dtd',
18 'gif' => 'image/gif',
19 'htm' => 'text/html',
20 'html' => 'text/html',
21 'ico' => 'image/x-icon',
22 'jpeg' => 'image/jpeg',
23 'jpg' => 'image/jpeg',
24 'js' => 'application/x-javascript',
25 'mov' => 'video/quicktime',
26 'mp3' => 'audio/mpeg',
27 'mpeg' => 'video/mpeg',
28 'mpg' => 'video/mpeg',
29 'ogg' => 'application/ogg',
30 'pdb' => 'chemical/x-pdb',
31 'pdf' => 'application/pdf',
32 'png' => 'image/png',
33 'ppt' => 'application/vnd.ms-powerpoint',
34 'ps' => 'application/postscript',
35 'qt' => 'video/quicktime',
36 'ra' => 'audio/x-pn-realaudio',
37 'ram' => 'audio/x-pn-realaudio',
38 'rdf' => 'application/rdf+xml',
39 'rm' => 'application/vnd.rn-realmedia',
40 'rtf' => 'text/rtf',
41 'smi' => 'application/smil',
42 'smil' => 'application/smil',
43 'svg' => 'image/svg+xml',
44 'swf' => 'application/x-shockwave-flash',
45 'txt' => 'text/plain',
46 'vrml' => 'model/vrml',
47 'wav' => 'audio/x-wav',
48 'wrl' => 'model/vrml',
49 'xhtml' => 'application/xhtml+xml',
50 'xls' => 'application/vnd.ms-excel',
51 'xml' => 'application/xml',
52 'xsl' => 'application/xml',
53 'xslt' => 'application/xslt+xml',
54 'xul' => 'application/vnd.mozilla.xul+xml',
55 'zip' => 'application/zip'
56);
$mimetypes
Definition: mimemap.php:10