function variable_file_format_file in Variable Extra 7
Variable format callback. Generic file.
1 string reference to 'variable_file_format_file'
- variable_file_variable_type_info in variable_file/
variable_file.variable.inc - Implements hook_variable_type_info().
File
- variable_file/
variable_file.variable.inc, line 187 - Variable module hook implementations
Code
function variable_file_format_file($variable, $options = array()) {
if ($path = _variable_file_get_path($variable)) {
$url = file_create_url($path);
return l($url, $url);
}
else {
return t('No file');
}
}