function system_find_base_themes
Same name and namespace in other branches
- 6.x drupal-6.x/modules/system/system.module \system_find_base_themes()
Find all the base themes for the specified theme.
This function has been deprecated in favor of drupal_find_base_themes().
Archivo
- drupal-7.x/
modules/ system/ system.module, line 2674 - Configuration system that lets administrators modify the workings of the site.
Código
function system_find_base_themes($themes, $key, $used_keys = array()) {
return drupal_find_base_themes($themes, $key, $used_keys);
}