MediaWiki master
defines.php
Go to the documentation of this file.
1<?php
12// unknown format
13define( 'MEDIATYPE_UNKNOWN', 'UNKNOWN' );
14// some bitmap image or image source (like psd, etc). Can't scale up.
15define( 'MEDIATYPE_BITMAP', 'BITMAP' );
16// some vector drawing (SVG, WMF, PS, ...) or image source (oo-draw, etc). Can scale up.
17define( 'MEDIATYPE_DRAWING', 'DRAWING' );
18// simple audio file (ogg, mp3, wav, midi, whatever)
19define( 'MEDIATYPE_AUDIO', 'AUDIO' );
20// simple video file (ogg, mpg, etc;
21// no not include formats here that may contain executable sections or scripts!)
22define( 'MEDIATYPE_VIDEO', 'VIDEO' );
23// Scriptable Multimedia (flash, advanced video container formats, etc)
24define( 'MEDIATYPE_MULTIMEDIA', 'MULTIMEDIA' );
25// Office Documents, Spreadsheets (office formats possibly containing apples, scripts, etc)
26define( 'MEDIATYPE_OFFICE', 'OFFICE' );
27// Plain text (possibly containing program code or scripts)
28define( 'MEDIATYPE_TEXT', 'TEXT' );
29// binary executable
30define( 'MEDIATYPE_EXECUTABLE', 'EXECUTABLE' );
31// archive file (zip, tar, etc)
32define( 'MEDIATYPE_ARCHIVE', 'ARCHIVE' );
33// 3D file types (stl)
34define( 'MEDIATYPE_3D', '3D' );