theme_field_formatter_file_url_plain

Versions
7
theme_field_formatter_file_url_plain($variables)

Theme function for 'url_plain' file field formatter.

Code

modules/file/file.field.inc, line 856

<?php
function theme_field_formatter_file_url_plain($variables) {
  $element = $variables['element'];
  return empty($element['#item']['uri']) ? '' : file_create_url($element['#item']['uri']);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.