Ticket #7225: 7225.2.diff
File 7225.2.diff, 3.3 KB (added by , 15 years ago) |
---|
-
wp-includes/functions.php
### Eclipse Workspace Patch 1.0 #P wordpress-trunk
2221 2221 * @return string|null The file type, example: audio, video, document, spreadsheet, etc. Null if not found. 2222 2222 */ 2223 2223 function wp_ext2type( $ext ) { 2224 $ext2type = apply_filters( 'ext2type', array(2225 'audio' => array('aac','ac3','aif','aiff','mp1','mp2','mp3','m3a','m4a','m4b','ogg','ram','wav','wma'),2226 'video' => array('asf','avi','divx','dv','mov','mpg','mpeg','mp4','mpv','ogm','qt','rm','vob','wmv', 'm4v'),2227 'document' => array('doc','docx','pages','odt','rtf','pdf'),2228 'spreadsheet' => array( 'xls','xlsx','numbers','ods'),2229 'interactive' => array( 'ppt','pptx','key','odp','swf'),2230 'text' => array('txt'),2231 'archive' => array('tar','bz2','gz','cab','dmg','rar','sea','sit','sqx','zip'),2232 'code' => array('css','html','php','js'),2224 $ext2type = apply_filters( 'ext2type', array( 2225 'audio' => array( 'aac', 'ac3', 'aif', 'aiff', 'm3a', 'm4a', 'm4b', 'mka', 'mp1', 'mp2', 'mp3', 'ogg', 'ram', 'wav', 'wma' ), 2226 'video' => array( 'asf', 'avi', 'divx', 'dv', 'flv', 'mkv', 'mov', 'mpg', 'mpeg', 'mp4', 'mpv', 'ogm', 'qt', 'rm', 'vob', 'wmv', 'm4v' ), 2227 'document' => array( 'doc', 'docx', 'docm', 'dotm', 'odt', 'pages', 'pdf', 'rtf' ), 2228 'spreadsheet' => array( 'numbers', 'ods', 'xls', 'xlsx', 'xlsb', 'xlsm' ), 2229 'interactive' => array( 'key', 'ppt', 'pptx', 'pptm', 'odp', 'swf' ), 2230 'text' => array( 'asc', 'txt' ), 2231 'archive' => array( 'bz2', 'cab', 'dmg', 'gz', 'rar', 'sea', 'sit', 'sqx', 'tar', 'tgz', 'zip' ), 2232 'code' => array( 'css', 'html', 'php', 'js' ), 2233 2233 )); 2234 2234 foreach ( $ext2type as $type => $exts ) 2235 if ( in_array( $ext, $exts) )2235 if ( in_array( $ext, $exts ) ) 2236 2236 return $type; 2237 2237 } 2238 2238 … … 2290 2290 'flv' => 'video/x-flv', 2291 2291 'mov|qt' => 'video/quicktime', 2292 2292 'mpeg|mpg|mpe' => 'video/mpeg', 2293 'txt| c|cc|h' => 'text/plain',2293 'txt|asc|c|cc|h' => 'text/plain', 2294 2294 'rtx' => 'text/richtext', 2295 2295 'css' => 'text/css', 2296 2296 'htm|html' => 'text/html', … … 2301 2301 'ogg' => 'audio/ogg', 2302 2302 'mid|midi' => 'audio/midi', 2303 2303 'wma' => 'audio/wma', 2304 'mka' => 'audio/x-matroska', 2305 'mkv' => 'video/x-matroska', 2304 2306 'rtf' => 'application/rtf', 2305 2307 'js' => 'application/javascript', 2306 2308 'pdf' => 'application/pdf', 2307 2309 'doc|docx' => 'application/msword', 2308 'pot|pps|ppt|pptx ' => 'application/vnd.ms-powerpoint',2310 'pot|pps|ppt|pptx|ppam|pptm|sldm|ppsm|potm' => 'application/vnd.ms-powerpoint', 2309 2311 'wri' => 'application/vnd.ms-write', 2310 'xla|xls|xlsx|xlt|xlw ' => 'application/vnd.ms-excel',2312 'xla|xls|xlsx|xlt|xlw|xlam|xlsb|xlsm|xltm' => 'application/vnd.ms-excel', 2311 2313 'mdb' => 'application/vnd.ms-access', 2312 2314 'mpp' => 'application/vnd.ms-project', 2315 'docm|dotm' => 'application/vnd.ms-word', 2316 'pptx|sldx|ppsx|potx' => 'application/vnd.openxmlformats-officedocument.presentationml', 2317 'xlsx|xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml', 2318 'docx|dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml', 2319 'onetoc|onetoc2|onetmp|onepkg' => 'application/onenote', 2313 2320 'swf' => 'application/x-shockwave-flash', 2314 2321 'class' => 'application/java', 2315 2322 'tar' => 'application/x-tar',