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