function system_find_base_themes

7.x system.module system_find_base_themes($themes, $key, $used_keys = array())
6.x system.module system_find_base_themes($themes, $key, $used_keys = array())

Find all the base themes for the specified theme.

This function has been deprecated in favor of drupal_find_base_themes().

File

drupal-7.x/modules/system/system.module, line 2674
Configuration system that lets administrators modify the workings of the site.

Code

function system_find_base_themes($themes, $key, $used_keys = array()) {
  return drupal_find_base_themes($themes, $key, $used_keys);
}