admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 1 | <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); |
| 2 | /* |
| 3 | | ------------------------------------------------------------------- |
| 4 | | MIME TYPES |
| 5 | | ------------------------------------------------------------------- |
| 6 | | This file contains an array of mime types. It is used by the |
admin | b1fddc0 | 2006-10-09 21:29:07 +0000 | [diff] [blame] | 7 | | Upload class to help identify allowed file types. |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 8 | | |
| 9 | */ |
| 10 | |
| 11 | $mimes = array( 'hqx' => 'application/mac-binhex40', |
| 12 | 'cpt' => 'application/mac-compactpro', |
| 13 | 'csv' => array('text/x-comma-separated-values', 'application/vnd.ms-excel'), |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 14 | 'bin' => 'application/macbinary', |
| 15 | 'dms' => 'application/octet-stream', |
| 16 | 'lha' => 'application/octet-stream', |
| 17 | 'lzh' => 'application/octet-stream', |
| 18 | 'exe' => 'application/octet-stream', |
| 19 | 'class' => 'application/octet-stream', |
| 20 | 'psd' => 'application/x-photoshop', |
| 21 | 'so' => 'application/octet-stream', |
| 22 | 'sea' => 'application/octet-stream', |
| 23 | 'dll' => 'application/octet-stream', |
| 24 | 'oda' => 'application/oda', |
admin | 2bc1385 | 2006-10-24 23:16:17 +0000 | [diff] [blame] | 25 | 'pdf' => array('application/pdf', 'application/x-download'), |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 26 | 'ai' => 'application/postscript', |
| 27 | 'eps' => 'application/postscript', |
| 28 | 'ps' => 'application/postscript', |
| 29 | 'smi' => 'application/smil', |
| 30 | 'smil' => 'application/smil', |
| 31 | 'mif' => 'application/vnd.mif', |
| 32 | 'xls' => array('application/excel', 'application/vnd.ms-excel'), |
| 33 | 'ppt' => 'application/powerpoint', |
| 34 | 'wbxml' => 'application/wbxml', |
| 35 | 'wmlc' => 'application/wmlc', |
| 36 | 'dcr' => 'application/x-director', |
| 37 | 'dir' => 'application/x-director', |
| 38 | 'dxr' => 'application/x-director', |
| 39 | 'dvi' => 'application/x-dvi', |
| 40 | 'gtar' => 'application/x-gtar', |
admin | 78bc039 | 2006-10-02 02:38:50 +0000 | [diff] [blame] | 41 | 'gz' => 'application/x-gzip', |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 42 | 'php' => 'application/x-httpd-php', |
| 43 | 'php4' => 'application/x-httpd-php', |
| 44 | 'php3' => 'application/x-httpd-php', |
| 45 | 'phtml' => 'application/x-httpd-php', |
| 46 | 'phps' => 'application/x-httpd-php-source', |
| 47 | 'js' => 'application/x-javascript', |
| 48 | 'swf' => 'application/x-shockwave-flash', |
| 49 | 'sit' => 'application/x-stuffit', |
| 50 | 'tar' => 'application/x-tar', |
| 51 | 'tgz' => 'application/x-tar', |
| 52 | 'xhtml' => 'application/xhtml+xml', |
| 53 | 'xht' => 'application/xhtml+xml', |
admin | 78bc039 | 2006-10-02 02:38:50 +0000 | [diff] [blame] | 54 | 'zip' => array('application/x-zip', 'application/zip', 'application/x-zip-compressed'), |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 55 | 'mid' => 'audio/midi', |
| 56 | 'midi' => 'audio/midi', |
| 57 | 'mpga' => 'audio/mpeg', |
| 58 | 'mp2' => 'audio/mpeg', |
| 59 | 'mp3' => 'audio/mpeg', |
| 60 | 'aif' => 'audio/x-aiff', |
| 61 | 'aiff' => 'audio/x-aiff', |
| 62 | 'aifc' => 'audio/x-aiff', |
| 63 | 'ram' => 'audio/x-pn-realaudio', |
| 64 | 'rm' => 'audio/x-pn-realaudio', |
| 65 | 'rpm' => 'audio/x-pn-realaudio-plugin', |
| 66 | 'ra' => 'audio/x-realaudio', |
| 67 | 'rv' => 'video/vnd.rn-realvideo', |
| 68 | 'wav' => 'audio/x-wav', |
| 69 | 'bmp' => 'image/bmp', |
| 70 | 'gif' => 'image/gif', |
| 71 | 'jpeg' => array('image/jpeg', 'image/pjpeg'), |
| 72 | 'jpg' => array('image/jpeg', 'image/pjpeg'), |
| 73 | 'jpe' => array('image/jpeg', 'image/pjpeg'), |
| 74 | 'png' => array('image/png', 'image/x-png'), |
| 75 | 'tiff' => 'image/tiff', |
| 76 | 'tif' => 'image/tiff', |
| 77 | 'css' => 'text/css', |
| 78 | 'html' => 'text/html', |
| 79 | 'htm' => 'text/html', |
| 80 | 'shtml' => 'text/html', |
| 81 | 'txt' => 'text/plain', |
| 82 | 'text' => 'text/plain', |
| 83 | 'log' => array('text/plain', 'text/x-log'), |
| 84 | 'rtx' => 'text/richtext', |
| 85 | 'rtf' => 'text/rtf', |
| 86 | 'xml' => 'text/xml', |
| 87 | 'xsl' => 'text/xml', |
| 88 | 'mpeg' => 'video/mpeg', |
| 89 | 'mpg' => 'video/mpeg', |
| 90 | 'mpe' => 'video/mpeg', |
| 91 | 'qt' => 'video/quicktime', |
| 92 | 'mov' => 'video/quicktime', |
| 93 | 'avi' => 'video/x-msvideo', |
| 94 | 'movie' => 'video/x-sgi-movie', |
| 95 | 'doc' => 'application/msword', |
admin | 2bc1385 | 2006-10-24 23:16:17 +0000 | [diff] [blame] | 96 | 'word' => array('application/msword', 'application/octet-stream'), |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 97 | 'xl' => 'application/excel', |
| 98 | 'eml' => 'message/rfc822' |
| 99 | ); |
| 100 | |
| 101 | |
| 102 | ?> |