1.20.x drupal.inc drupal_get_filename($type, $name, $filename = NULL)

Returns and optionally sets the filename for a system resource.

Deprecated

since 1.0.0

See also

backdrop_get_filename()

Related topics

File

includes/drupal.inc, line 116
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_get_filename($type, $name, $filename = NULL) {
  return backdrop_get_filename($type, $name, $filename);
}