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