Make WordPress Core

Ticket #7225: 7225.2.diff

File 7225.2.diff, 3.3 KB (added by hakre, 15 years ago)
  • wp-includes/functions.php

    ### Eclipse Workspace Patch 1.0
    #P wordpress-trunk
     
    22212221 * @return string|null The file type, example: audio, video, document, spreadsheet, etc. Null if not found.
    22222222 */
    22232223function 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' ),
    22332233        ));
    22342234        foreach ( $ext2type as $type => $exts )
    2235                 if ( in_array($ext, $exts) )
     2235                if ( in_array( $ext, $exts ) )
    22362236                        return $type;
    22372237}
    22382238
     
    22902290                'flv' => 'video/x-flv',
    22912291                'mov|qt' => 'video/quicktime',
    22922292                'mpeg|mpg|mpe' => 'video/mpeg',
    2293                 'txt|c|cc|h' => 'text/plain',
     2293                'txt|asc|c|cc|h' => 'text/plain',
    22942294                'rtx' => 'text/richtext',
    22952295                'css' => 'text/css',
    22962296                'htm|html' => 'text/html',
     
    23012301                'ogg' => 'audio/ogg',
    23022302                'mid|midi' => 'audio/midi',
    23032303                'wma' => 'audio/wma',
     2304                'mka' => 'audio/x-matroska',
     2305                'mkv' => 'video/x-matroska',
    23042306                'rtf' => 'application/rtf',
    23052307                'js' => 'application/javascript',
    23062308                'pdf' => 'application/pdf',
    23072309                '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',
    23092311                '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',
    23112313                'mdb' => 'application/vnd.ms-access',
    23122314                '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',
    23132320                'swf' => 'application/x-shockwave-flash',
    23142321                'class' => 'application/java',
    23152322                'tar' => 'application/x-tar',