| 7 system.module | system_rebuild_theme_data() |
| 8 system.module | system_rebuild_theme_data() |
Rebuild, save, and return data about all currently available themes.
Return value
Array of all available themes and their data.
8 calls to system_rebuild_theme_data()
File
- modules/
system/ system.module, line 2588 - Configuration system that lets administrators modify the workings of the site.
Code
function system_rebuild_theme_data() {
$themes = _system_rebuild_theme_data();
ksort($themes);
system_get_files_database($themes, 'theme');
system_update_files_database($themes, 'theme');
return $themes;
}
Login or register to post comments