1.20.x drupal.inc drupal_theme_access($theme)

Determines if a theme is available to use.

Deprecated

since 1.0.0

See also

backdrop_theme_access()

Related topics

File

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

Code

function drupal_theme_access($theme) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  return backdrop_theme_access($theme);
}