MDL-54934 workshop: ensure "Current phase" is always separated
[moodle.git] / lib / lessphp / Mime.php
blob109ecd3f82552ddd76a1dc52a5cd05f3d861e102
1 <?php
3 /**
4 * Mime lookup
6 * @package Less
7 * @subpackage node
8 */
9 class Less_Mime{
11 // this map is intentionally incomplete
12 // if you want more, install 'mime' dep
13 static $_types = array(
14 '.htm' => 'text/html',
15 '.html'=> 'text/html',
16 '.gif' => 'image/gif',
17 '.jpg' => 'image/jpeg',
18 '.jpeg'=> 'image/jpeg',
19 '.png' => 'image/png',
20 '.ttf' => 'application/x-font-ttf',
21 '.otf' => 'application/x-font-otf',
22 '.eot' => 'application/vnd.ms-fontobject',
23 '.woff' => 'application/x-font-woff',
24 '.svg' => 'image/svg+xml',
27 public static function lookup( $filepath ){
28 $parts = explode('.',$filepath);
29 $ext = '.'.strtolower(array_pop($parts));
31 if( !isset(self::$_types[$ext]) ){
32 return null;
34 return self::$_types[$ext];
37 public static function charsets_lookup( $type = null ){
38 // assumes all text types are UTF-8
39 return $type && preg_match('/^text\//',$type) ? 'UTF-8' : '';