non-image file icons

This commit is contained in:
Savetheinternet 2011-10-05 16:45:34 +11:00
parent 5a17cfd886
commit d7f32670c5
2 changed files with 18 additions and 6 deletions

View file

@ -365,7 +365,10 @@
);
}
$ext = explode('.', $this->file);
$ext = $ext[1];
$built .= ')</span></p>' .
// Thumbnail
'<a href="' .
$config['uri_img'] .$this->file .
@ -373,7 +376,7 @@
($this->thumb == 'file' ? ' class="file"' : '') .
'><img src="' .
($this->thumb == 'file' ?
$config['root'] . $config['file_thumb']
$config['root'] . sprintf($config['file_thumb'], isset($config['file_icons'][$ext]) ? $config['file_icons'][$ext] : $config['file_icons']['default'])
:
($this->thumb == 'spoiler' ?
$config['root'] . $config['spoiler_image']
@ -538,7 +541,10 @@
);
}
$ext = explode('.', $this->file);
$ext = $ext[1];
$built .= ')</span></p>' .
// Thumbnail
'<a href="' .
$config['uri_img'] .$this->file .
@ -546,7 +552,7 @@
($this->thumb == 'file' ? ' class="file"' : '') .
'><img src="' .
($this->thumb == 'file' ?
$config['root'] . $config['file_thumb']
$config['root'] . sprintf($config['file_thumb'], isset($config['file_icons'][$ext]) ? $config['file_icons'][$ext] : $config['file_icons']['default'])
:
($this->thumb == 'spoiler' ?
$config['root'] . $config['spoiler_image']