Hello community,
my question is if there is an option to set a download icon for a file type which isn't assigned to one by default. In my case I wanted to assign an icon for my mid-files. It would even be enough if I could assign the icon for mp3-files to my mid-files.
Thanks in advance,
Marioverehrer
Change download icon for file type
-
- Phoca Newbie
- Posts: 2
- Joined: 15 May 2014, 20:04
- Jan
- Phoca Hero
- Posts: 48566
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Change download icon for file type
Hi, added to feature request list.
To customize it now, go to:
administrator\components\com_phocadownload\libraries\phocadownload\file\file.php
see the public static function getMimeTypeIcon( ... method
and change from:
to:
Jan
To customize it now, go to:
administrator\components\com_phocadownload\libraries\phocadownload\file\file.php
see the public static function getMimeTypeIcon( ... method
and change from:
Code: Select all
case 'ogg':
case 'mp3':
case 'wav':
$icon = 'audio';
break;
Code: Select all
case 'ogg':
case 'mp3':
case 'wav':
case 'mid':
$icon = 'audio';
break;
If you find Phoca extensions useful, please support the project
- Jan
- Phoca Hero
- Posts: 48566
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Change download icon for file type
Added in 3.0.5
Jan
Jan
If you find Phoca extensions useful, please support the project