1 drupal.inc | drupal_lookup_path($action, $path = '', $langcode = NULL) |
Given an alias, return its Backdrop system URL if one exists.
Deprecated
since 1.0.0
See also
Related topics
File
- core/
includes/ drupal.inc, line 2151 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function drupal_lookup_path($action, $path = '', $langcode = NULL) {
watchdog_deprecated_function('drupal', __FUNCTION__);
return backdrop_lookup_path($action, $path, $langcode);
}