1.20.x drupal.inc drupal_find_base_themes($themes, $key, $used_keys = array())

Find all the base themes for the specified theme.

Deprecated

since 1.0.0

See also

backdrop_find_base_themes()

Related topics

File

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

Code

function drupal_find_base_themes($themes, $key, $used_keys = array()) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  return backdrop_find_base_themes($themes, $key, $used_keys);
}