1 drupal.inc | drupal_find_theme_templates($cache, $extension, $path) |
Allows themes and/or theme engines to discover overridden templates.
Deprecated
since 1.0.0
See also
backdrop_find_theme_templates()
Related topics
File
- core/
includes/ drupal.inc, line 2397 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function drupal_find_theme_templates($cache, $extension, $path) {
watchdog_deprecated_function('drupal', __FUNCTION__);
return backdrop_find_theme_templates($cache, $extension, $path);
}