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