tpl_icons.php
来自「一款文件上传程序」· PHP 代码 · 共 36 行
PHP
36 行
<?php
// This function returns the icon file corresponding to the file type
/* no used anymore, should use the javascript function instead if possible. */
function tpl_myfiles_get_icon ( $extension )
{
$icons = array
(
'default' => 'file.gif',
// images
'jpg' => 'images.gif',
'jpeg' => 'images.gif',
'png' => 'png.gif',
'gif' => 'gif.gif',
// media
'avi' => 'video.gif',
'wmv' => 'video.gif',
'mpeg' => 'video2.gif',
'mpg' => 'video2.gif',
'mov' => 'quicktime.gif',
'mp3' => 'mp3.gif',
// Archives
'zip' => 'zip.gif',
'rar' => 'zip.gif',
'tar' => 'zip.gif',
// documents
'pdf' => 'acrobat.gif',
'ppt' => 'powerpoint.gif',
'txt' => 'text.gif',
'doc' => 'word.gif',
'xls' => 'excel.gif',
);
return ( isset ( $icons[$extension] ) ? $icons[$extension] : $icons['default'] );
}
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?