file_icon_url
- Versions
- 7
file_icon_url($file, $icon_directory = NULL)
Given a file object, create a URL to a matching icon.
Parameters
$file A file object.
$icon_directory (optional) A path to a directory of icons to be used for files. Defaults to the value of the "file_icon_directory" variable.
Return value
A URL string to the icon, or FALSE if an appropriate icon cannot be found.
Code
modules/file/file.module, line 657
<?php
function file_icon_url($file, $icon_directory = NULL) {
if ($icon_path = file_icon_path($file, $icon_directory)) {
return base_path() . $icon_path;
}
return FALSE;
}
?>Login or register to post comments 