Style fixes

This commit is contained in:
Michael Gapczynski 2013-05-29 10:56:28 -04:00
parent 24a401a548
commit 59655e9afd
1 changed files with 21 additions and 21 deletions

View File

@ -188,38 +188,38 @@ class OC_Helper {
* *
* Returns the path to the image of this file type. * Returns the path to the image of this file type.
*/ */
public static function mimetypeIcon( $mimetype ) { public static function mimetypeIcon($mimetype) {
$alias=array('application/xml'=>'code/xml'); $alias = array('application/xml' => 'code/xml');
if(isset($alias[$mimetype])) { if (isset($alias[$mimetype])) {
$mimetype=$alias[$mimetype]; $mimetype = $alias[$mimetype];
} }
if (isset(self::$mimetypeIcons[$mimetype])) { if (isset(self::$mimetypeIcons[$mimetype])) {
return self::$mimetypeIcons[$mimetype]; return self::$mimetypeIcons[$mimetype];
} }
// Replace slash and backslash with a minus // Replace slash and backslash with a minus
$icon = str_replace( "/", "-", $mimetype ); $icon = str_replace('/', '-', $mimetype);
$icon = str_replace( "\\", "-", $icon ); $icon = str_replace( '\\', '-', $icon);
// Is it a dir? // Is it a dir?
if( $mimetype == "dir" ) { if ($mimetype === 'dir') {
self::$mimetypeIcons[$mimetype] = OC::$WEBROOT."/core/img/filetypes/folder.png"; self::$mimetypeIcons[$mimetype] = OC::$WEBROOT.'/core/img/filetypes/folder.png';
return OC::$WEBROOT."/core/img/filetypes/folder.png"; return OC::$WEBROOT.'/core/img/filetypes/folder.png';
} }
// Icon exists? // Icon exists?
if( file_exists( OC::$SERVERROOT."/core/img/filetypes/$icon.png" )) { if (file_exists(OC::$SERVERROOT.'/core/img/filetypes/'.$icon.'.png')) {
self::$mimetypeIcons[$mimetype] = OC::$WEBROOT."/core/img/filetypes/$icon.png"; self::$mimetypeIcons[$mimetype] = OC::$WEBROOT.'/core/img/filetypes/'.$icon.'.png';
return OC::$WEBROOT."/core/img/filetypes/$icon.png"; return OC::$WEBROOT.'/core/img/filetypes/'.$icon.'.png';
} }
//try only the first part of the filetype
$mimePart=substr($icon, 0, strpos($icon, '-')); // Try only the first part of the filetype
if( file_exists( OC::$SERVERROOT."/core/img/filetypes/$mimePart.png" )) { $mimePart = substr($icon, 0, strpos($icon, '-'));
self::$mimetypeIcons[$mimetype] = OC::$WEBROOT."/core/img/filetypes/$mimePart.png"; if (file_exists(OC::$SERVERROOT.'/core/img/filetypes/'.$mimePart.'.png')) {
return OC::$WEBROOT."/core/img/filetypes/$mimePart.png"; self::$mimetypeIcons[$mimetype] = OC::$WEBROOT.'/core/img/filetypes/'.$mimePart.'.png';
} return OC::$WEBROOT.'/core/img/filetypes/'.$mimePart.'.png';
else{ } else {
self::$mimetypeIcons[$mimetype] = OC::$WEBROOT."/core/img/filetypes/file.png"; self::$mimetypeIcons[$mimetype] = OC::$WEBROOT.'/core/img/filetypes/file.png';
return OC::$WEBROOT."/core/img/filetypes/file.png"; return OC::$WEBROOT.'/core/img/filetypes/file.png';
} }
} }